Fix “mark as sensitive” not being used in delete & redraft (#10980)

master
ThibG 5 years ago committed by Eugen Rochko
parent 70423ce81f
commit 2657765d2a
  1. 1
      app/javascript/mastodon/reducers/compose.js

@ -338,6 +338,7 @@ export default function compose(state = initialState, action) {
map.set('focusDate', new Date());
map.set('caretPosition', null);
map.set('idempotencyKey', uuid());
map.set('sensitive', action.status.get('sensitive'));
if (action.status.get('spoiler_text').length > 0) {
map.set('spoiler', true);

Loading…
Cancel
Save