forked from AkkomaGang/akkoma-fe
Use correct sensitiveIfSubject key
This commit is contained in:
parent
f3962e3be7
commit
e77931d68c
1 changed files with 3 additions and 3 deletions
|
@ -148,7 +148,7 @@ const PostStatusForm = {
|
||||||
spoilerText: this.subject || '',
|
spoilerText: this.subject || '',
|
||||||
status: this.statusText || '',
|
status: this.statusText || '',
|
||||||
sensitiveIfSubject,
|
sensitiveIfSubject,
|
||||||
nsfw: this.statusIsSensitive || !!sensitiveByDefault,
|
nsfw: this.statusIsSensitive || (sensitiveIfSubject && this.subject) || !!sensitiveByDefault,
|
||||||
files: this.statusFiles || [],
|
files: this.statusFiles || [],
|
||||||
poll: this.statusPoll || {},
|
poll: this.statusPoll || {},
|
||||||
mediaDescriptions: this.statusMediaDescriptions || {},
|
mediaDescriptions: this.statusMediaDescriptions || {},
|
||||||
|
@ -418,7 +418,7 @@ const PostStatusForm = {
|
||||||
addMediaFile (fileInfo) {
|
addMediaFile (fileInfo) {
|
||||||
this.newStatus.files.push(fileInfo)
|
this.newStatus.files.push(fileInfo)
|
||||||
|
|
||||||
if (this.newStatus.sensitiveIfSubject && this.newStatus.spoilerText !== '') {
|
if (this.$store.getters.mergedConfig.sensitiveIfSubject && this.newStatus.spoilerText !== '') {
|
||||||
this.newStatus.nsfw = true
|
this.newStatus.nsfw = true
|
||||||
}
|
}
|
||||||
this.$emit('resize', { delayed: true })
|
this.$emit('resize', { delayed: true })
|
||||||
|
@ -498,7 +498,7 @@ const PostStatusForm = {
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
onSubjectInput (e) {
|
onSubjectInput (e) {
|
||||||
if (this.newStatus.sensitiveIfSubject) {
|
if (this.$store.getters.mergedConfig.sensitiveIfSubject) {
|
||||||
this.newStatus.nsfw = true
|
this.newStatus.nsfw = true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue