mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-30 02:49:03 +01:00
remove unnecessary parameter
This commit is contained in:
parent
e3f97f60a6
commit
14561a05c8
2 changed files with 4 additions and 4 deletions
|
@ -413,11 +413,11 @@ export const addReaction = (statusId, name) => (dispatch, getState) => {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!alreadyAdded) {
|
if (!alreadyAdded) {
|
||||||
dispatch(addReactionRequest(statusId, name, alreadyAdded));
|
dispatch(addReactionRequest(statusId, name));
|
||||||
}
|
}
|
||||||
|
|
||||||
api(getState).post(`/api/v1/statuses/${statusId}/react/${name}`).then(() => {
|
api(getState).post(`/api/v1/statuses/${statusId}/react/${name}`).then(() => {
|
||||||
dispatch(addReactionSuccess(statusId, name, alreadyAdded));
|
dispatch(addReactionSuccess(statusId, name));
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
if (!alreadyAdded) {
|
if (!alreadyAdded) {
|
||||||
dispatch(addReactionFail(statusId, name, err));
|
dispatch(addReactionFail(statusId, name, err));
|
||||||
|
|
|
@ -433,11 +433,11 @@ export const addReaction = (statusId, name) => (dispatch, getState) => {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!alreadyAdded) {
|
if (!alreadyAdded) {
|
||||||
dispatch(addReactionRequest(statusId, name, alreadyAdded));
|
dispatch(addReactionRequest(statusId, name));
|
||||||
}
|
}
|
||||||
|
|
||||||
api(getState).post(`/api/v1/statuses/${statusId}/react/${name}`).then(() => {
|
api(getState).post(`/api/v1/statuses/${statusId}/react/${name}`).then(() => {
|
||||||
dispatch(addReactionSuccess(statusId, name, alreadyAdded));
|
dispatch(addReactionSuccess(statusId, name));
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
if (!alreadyAdded) {
|
if (!alreadyAdded) {
|
||||||
dispatch(addReactionFail(statusId, name, err));
|
dispatch(addReactionFail(statusId, name, err));
|
||||||
|
|
Loading…
Reference in a new issue