From: ThibG Date: Sat, 11 May 2019 21:56:07 +0000 (+0200) Subject: Fix incorrect reference to raw_content (it is raw_text instead) (#10753) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=dd118449c2e131b49220f3d32c08f47a37ea9596;p=mastodon.git Fix incorrect reference to raw_content (it is raw_text instead) (#10753) --- diff --git a/app/javascript/mastodon/reducers/compose.js b/app/javascript/mastodon/reducers/compose.js index 85cbdfb17..708272591 100644 --- a/app/javascript/mastodon/reducers/compose.js +++ b/app/javascript/mastodon/reducers/compose.js @@ -331,7 +331,7 @@ export default function compose(state = initialState, action) { })); case REDRAFT: return state.withMutations(map => { - map.set('text', action.raw_content || unescapeHTML(expandMentions(action.status))); + map.set('text', action.raw_text || unescapeHTML(expandMentions(action.status))); map.set('in_reply_to', action.status.get('in_reply_to_id')); map.set('privacy', action.status.get('visibility')); map.set('media_attachments', action.status.get('media_attachments'));