Fix ActivityPub votes having nil IDs (#10151)
This commit is contained in:
parent
0e6998da3c
commit
1a7de769a3
1 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@ class ActivityPub::VoteSerializer < ActiveModel::Serializer
|
||||||
:in_reply_to, :to
|
:in_reply_to, :to
|
||||||
|
|
||||||
def id
|
def id
|
||||||
nil
|
[ActivityPub::TagManager.instance.uri_for(object.account), '#votes/', object.id].join
|
||||||
end
|
end
|
||||||
|
|
||||||
def type
|
def type
|
||||||
|
@ -35,7 +35,7 @@ class ActivityPub::VoteSerializer < ActiveModel::Serializer
|
||||||
has_one :object, serializer: ActivityPub::VoteSerializer::NoteSerializer
|
has_one :object, serializer: ActivityPub::VoteSerializer::NoteSerializer
|
||||||
|
|
||||||
def id
|
def id
|
||||||
nil
|
[ActivityPub::TagManager.instance.uri_for(object.account), '#votes/', object.id, '/activity'].join
|
||||||
end
|
end
|
||||||
|
|
||||||
def type
|
def type
|
||||||
|
|
Loading…
Reference in a new issue