Force sensitive content flag when posting a toot with a CW

Indeed, when the “Always enable the Content Warning field” setting is enabled,
sending a content-less toot with a CW would move the CW to the toot's content
and leave the toot not marked as sensitive.
This commit is contained in:
Thibaut Girka 2018-10-20 13:08:13 +02:00 committed by ThibG
parent 13c3fa8d36
commit e4c3ea1809
1 changed files with 3 additions and 2 deletions

View File

@ -120,6 +120,7 @@ export function submitCompose() {
return function (dispatch, getState) {
let status = getState().getIn(['compose', 'text'], '');
let media = getState().getIn(['compose', 'media_attachments']);
let spoilerText = getState().getIn(['compose', 'spoiler_text'], '');
if ((!status || !status.length) && media.size === 0) {
return;
@ -133,8 +134,8 @@ export function submitCompose() {
status,
in_reply_to_id: getState().getIn(['compose', 'in_reply_to'], null),
media_ids: media.map(item => item.get('id')),
sensitive: getState().getIn(['compose', 'sensitive']),
spoiler_text: getState().getIn(['compose', 'spoiler_text'], ''),
sensitive: getState().getIn(['compose', 'sensitive']) || spoilerText.length > 0,
spoiler_text: spoilerText,
visibility: getState().getIn(['compose', 'privacy']),
}, {
headers: {