diff --git a/src/components/post_status_form/post_status_form.js b/src/components/post_status_form/post_status_form.js index 81c94969..e8b3cc0a 100644 --- a/src/components/post_status_form/post_status_form.js +++ b/src/components/post_status_form/post_status_form.js @@ -513,7 +513,7 @@ const PostStatusForm = { addMediaFile (fileInfo) { this.newStatus.files.push(fileInfo) - if (this.$store.getters.mergedConfig.sensitiveIfSubject && this.newStatus.spoilerText !== '') { + if (this.$store.getters.mergedConfig.sensitiveIfSubject && this.newStatus.spoilerText !== '' || !!this.$store.getters.mergedConfig.sensitiveByDefault) { this.newStatus.nsfw = true } this.$emit('resize', { delayed: true }) diff --git a/src/i18n/en.json b/src/i18n/en.json index 610238d4..e2605ecc 100644 --- a/src/i18n/en.json +++ b/src/i18n/en.json @@ -728,7 +728,7 @@ "security": "Security", "security_tab": "Security", "sensitive_by_default": "Mark posts as sensitive by default", - "sensitive_if_subject": "Automatically mark images as sensitive if a content warning is specified", + "sensitive_if_subject": "Automatically mark post as sensitive if a content warning is specified", "set_new_avatar": "Set new avatar", "set_new_mascot": "Set new mascot", "set_new_profile_background": "Set new profile background",