Support proper content-type in Delete & Redraft
This commit is contained in:
parent
f34a402a94
commit
93d98f62a8
2 changed files with 4 additions and 2 deletions
|
@ -433,6 +433,7 @@ export default function compose(state = initialState, action) {
|
|||
case REDRAFT:
|
||||
return state.withMutations(map => {
|
||||
map.set('text', action.raw_text || unescapeHTML(expandMentions(action.status)));
|
||||
map.set('content_type', action.content_type || 'text/plain');
|
||||
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'));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue