mirror of
https://github.com/whippyshou/mastodon
synced 2025-01-18 15:53:12 +09:00
Fix nil error for old toots that don't have a conversation (#4900)
This commit is contained in:
parent
881856553e
commit
4931eac280
@ -73,6 +73,8 @@ class ActivityPub::NoteSerializer < ActiveModel::Serializer
|
||||
end
|
||||
|
||||
def conversation
|
||||
return if object.conversation.nil?
|
||||
|
||||
if object.conversation.uri?
|
||||
object.conversation.uri
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user