Fix mutating objects
This commit is contained in:
parent
d4559402e4
commit
d5da55c6cc
1 changed files with 3 additions and 3 deletions
|
@ -69,9 +69,9 @@ export function submitCompose() {
|
||||||
sensitive: getState().getIn(['compose', 'sensitive']),
|
sensitive: getState().getIn(['compose', 'sensitive']),
|
||||||
unlisted: getState().getIn(['compose', 'unlisted'])
|
unlisted: getState().getIn(['compose', 'unlisted'])
|
||||||
}).then(function (response) {
|
}).then(function (response) {
|
||||||
dispatch(submitComposeSuccess(response.data));
|
dispatch(submitComposeSuccess({ ...response.data }));
|
||||||
dispatch(updateTimeline('home', response.data));
|
dispatch(updateTimeline('home', { ...response.data }));
|
||||||
dispatch(updateTimeline('public', response.data));
|
dispatch(updateTimeline('public', { ...response.data }));
|
||||||
}).catch(function (error) {
|
}).catch(function (error) {
|
||||||
dispatch(submitComposeFail(error));
|
dispatch(submitComposeFail(error));
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue