diff --git a/components/status/StatusContent.vue b/components/status/StatusContent.vue index b4dbb6d1dc..7dc937c634 100644 --- a/components/status/StatusContent.vue +++ b/components/status/StatusContent.vue @@ -20,7 +20,7 @@ const isFiltered = $computed(() => status.account.id !== currentUser.value?.acco // check spoiler text or media attachment // needed to handle accounts that mark all their posts as sensitive -const hasSensitiveSpoilerOrMedia = $computed(() => status.sensitive && (!!status.spoilerText || !!status.mediaAttachments.length)) +const hasSpoilerOrSensitiveMedia = $computed(() => !!status.spoilerText || (status.sensitive && !!status.mediaAttachments.length))