Raise exception when attempting to serialize local-only statuses

lolsob-rspec
Thibaut Girka 2019-05-29 22:32:24 +02:00 committed by ThibG
parent fb0489022c
commit 6e1ad5a03f
1 changed files with 1 additions and 0 deletions

View File

@ -25,6 +25,7 @@ class ActivityPub::NoteSerializer < ActivityPub::Serializer
attribute :closed, if: :poll_and_expired?
def id
raise Mastodon::NotPermittedError, 'Local-only statuses should not be serialized' if object.local_only?
ActivityPub::TagManager.instance.uri_for(object)
end