logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 41b4be699fa5908dee13f0ceed391f88e2923853
parent: d5da55c6cc100ee36391474762a34955075824ee
Author: Eugen Rochko <eugen@zeonfederated.com>
Date:   Sun,  4 Dec 2016 18:34:30 +0100

Fix rule

Diffstat:

Mapp/assets/javascripts/components/actions/compose.jsx7++++++-
1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/app/assets/javascripts/components/actions/compose.jsx b/app/assets/javascripts/components/actions/compose.jsx @@ -70,8 +70,13 @@ export function submitCompose() { unlisted: getState().getIn(['compose', 'unlisted']) }).then(function (response) { dispatch(submitComposeSuccess({ ...response.data })); + + // To make the app more responsive, immediately get the status into the columns dispatch(updateTimeline('home', { ...response.data })); - dispatch(updateTimeline('public', { ...response.data })); + + if (response.data.in_reply_to_id === null) { + dispatch(updateTimeline('public', { ...response.data })); + } }).catch(function (error) { dispatch(submitComposeFail(error)); });