logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 3208979655a3b6872232aab82c82f90494858f9d
parent: fbdb3bcf1ede96d97693165c485f1eabc44b9f8b
Author: Eugen Rochko <eugen@zeonfederated.com>
Date:   Wed,  1 Mar 2017 01:57:48 +0100

Fix typo

Diffstat:

Mapp/assets/javascripts/components/actions/compose.jsx4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app/assets/javascripts/components/actions/compose.jsx b/app/assets/javascripts/components/actions/compose.jsx @@ -85,11 +85,11 @@ export function submitCompose() { dispatch(updateTimeline('home', { ...response.data })); if (response.data.in_reply_to_id === null && response.data.visibility === 'public') { - if (getState.getIn(['timelines', 'community', 'loaded'])) { + if (getState().getIn(['timelines', 'community', 'loaded'])) { dispatch(updateTimeline('community', { ...response.data })); } - if (getState.getIn(['timelines', 'public', 'loaded'])) { + if (getState().getIn(['timelines', 'public', 'loaded'])) { dispatch(updateTimeline('public', { ...response.data })); } }