mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 01:48:06 +01:00
Fix media not being marked sensitive when outgoing CW is set
Fixes #1461 Fixes a regression from a recent merge
This commit is contained in:
parent
265b26489a
commit
339f78fb63
1 changed files with 1 additions and 5 deletions
|
@ -40,10 +40,6 @@ class ActivityPub::NoteSerializer < ActivityPub::Serializer
|
|||
object.spoiler_text.presence || (instance_options[:allow_local_only] ? nil : Setting.outgoing_spoilers.presence)
|
||||
end
|
||||
|
||||
def sensitive
|
||||
object.sensitive || (!instance_options[:allow_local_only] && Setting.outgoing_spoilers.present?)
|
||||
end
|
||||
|
||||
def direct_message
|
||||
object.direct_visibility?
|
||||
end
|
||||
|
@ -111,7 +107,7 @@ class ActivityPub::NoteSerializer < ActivityPub::Serializer
|
|||
end
|
||||
|
||||
def sensitive
|
||||
object.account.sensitized? || object.sensitive
|
||||
object.account.sensitized? || object.sensitive || (!instance_options[:allow_local_only] && Setting.outgoing_spoilers.present?)
|
||||
end
|
||||
|
||||
def virtual_tags
|
||||
|
|
Loading…
Reference in a new issue