Show 'do not display in public timeline' when replying to self

This commit is contained in:
blackle 2017-01-16 10:23:45 -05:00
parent 1a33e4042e
commit 889709a2a6
2 changed files with 6 additions and 2 deletions

View file

@ -28,7 +28,8 @@ const makeMapStateToProps = () => {
is_submitting: state.getIn(['compose', 'is_submitting']),
is_uploading: state.getIn(['compose', 'is_uploading']),
in_reply_to: getStatus(state, state.getIn(['compose', 'in_reply_to'])),
media_count: state.getIn(['compose', 'media_attachments']).size
media_count: state.getIn(['compose', 'media_attachments']).size,
me: state.getIn(['compose', 'me'])
};
};