Downsize originals in media attachments, small fixes

This commit is contained in:
Eugen Rochko 2016-12-05 17:13:05 +01:00
parent a910cdd54d
commit 64d109dc0e
4 changed files with 5 additions and 5 deletions

View file

@ -74,7 +74,7 @@ export function submitCompose() {
// To make the app more responsive, immediately get the status into the columns
dispatch(updateTimeline('home', { ...response.data }));
if (response.data.in_reply_to_id === null) {
if (response.data.in_reply_to_id === null && !getState().getIn(['compose', 'unlisted'])) {
dispatch(updateTimeline('public', { ...response.data }));
}
}).catch(function (error) {