Return early from submit if no text. (#1962)

This commit is contained in:
Zac Anger 2017-04-17 12:30:38 -06:00 committed by Eugen
parent 8fd6552bca
commit 7b397b1452
2 changed files with 6 additions and 2 deletions

View file

@ -73,9 +73,13 @@ export function mentionCompose(account, router) {
export function submitCompose() {
return function (dispatch, getState) {
const status = emojione.shortnameToUnicode(getState().getIn(['compose', 'text'], ''));
if (!status || !status.length) {
return;
}
dispatch(submitComposeRequest());
api(getState).post('/api/v1/statuses', {
status: emojione.shortnameToUnicode(getState().getIn(['compose', 'text'], '')),
status,
in_reply_to_id: getState().getIn(['compose', 'in_reply_to'], null),
media_ids: getState().getIn(['compose', 'media_attachments']).map(item => item.get('id')),
sensitive: getState().getIn(['compose', 'sensitive']),