Fix backup archive including outgoing-only content warnings
parent
7a7574317f
commit
0b7387cf40
|
@ -35,11 +35,11 @@ class ActivityPub::NoteSerializer < ActivityPub::Serializer
|
|||
end
|
||||
|
||||
def summary
|
||||
object.spoiler_text.presence || Setting.outgoing_spoilers.presence
|
||||
object.spoiler_text.presence || (instance_options[:allow_local_only] ? nil : Setting.outgoing_spoilers.presence)
|
||||
end
|
||||
|
||||
def sensitive
|
||||
object.sensitive || Setting.outgoing_spoilers.present?
|
||||
object.sensitive || (!instance_options[:allow_local_only] && Setting.outgoing_spoilers.present?)
|
||||
end
|
||||
|
||||
def content
|
||||
|
|
Loading…
Reference in New Issue