mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
Fix wrong target URIs in ActivityPub Add/Remove (#6668)
This commit is contained in:
parent
e6520c0270
commit
89a52d6280
2 changed files with 2 additions and 2 deletions
|
@ -19,6 +19,6 @@ class ActivityPub::AddSerializer < ActiveModel::Serializer
|
|||
end
|
||||
|
||||
def target
|
||||
account_collection_url(object, :featured)
|
||||
account_collection_url(object.account, :featured)
|
||||
end
|
||||
end
|
||||
|
|
|
@ -19,6 +19,6 @@ class ActivityPub::RemoveSerializer < ActiveModel::Serializer
|
|||
end
|
||||
|
||||
def target
|
||||
account_collection_url(object, :featured)
|
||||
account_collection_url(object.account, :featured)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue