Fix reply bug introduced when compose form started using normalized data

This commit is contained in:
Eugen 2016-09-05 22:43:34 +02:00 committed by GitHub
parent 5f36d8828a
commit 265215dae9
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ export function submitCompose() {
api(getState).post('/api/statuses', {
status: getState().getIn(['compose', 'text'], ''),
in_reply_to_id: getState().getIn(['compose', 'in_reply_to', 'id'], null)
in_reply_to_id: getState().getIn(['compose', 'in_reply_to'], null)
}).then(function (response) {
dispatch(submitComposeSuccess(response.data));
}).catch(function (error) {