diff options
author | Claire <claire.github-309c@sitedethib.com> | 2022-12-04 17:58:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-04 17:58:10 +0100 |
commit | f4879c4481ff4fd487bc1bfb1a48aa252960b2a3 (patch) | |
tree | 36061cc05332be7de14de96a092ff90bc8e7b259 /app/javascript/flavours/glitch/reducers | |
parent | e7ff8111b1c1bcb2cca24d3f91d29a02f2537ffd (diff) |
Fix content-type being reset when editing toots (#1993)
Fixes #1990
Diffstat (limited to 'app/javascript/flavours/glitch/reducers')
-rw-r--r-- | app/javascript/flavours/glitch/reducers/compose.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/reducers/compose.js b/app/javascript/flavours/glitch/reducers/compose.js index b1c792406..9b50ec23a 100644 --- a/app/javascript/flavours/glitch/reducers/compose.js +++ b/app/javascript/flavours/glitch/reducers/compose.js @@ -599,6 +599,7 @@ export default function compose(state = initialState, action) { return state.withMutations(map => { map.set('id', action.status.get('id')); map.set('text', action.text); + 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')); |