forked from treehouse/mastodon
Fix nil error for old toots that don't have a conversation (#4900)
parent
881856553e
commit
4931eac280
|
@ -73,6 +73,8 @@ class ActivityPub::NoteSerializer < ActiveModel::Serializer
|
||||||
end
|
end
|
||||||
|
|
||||||
def conversation
|
def conversation
|
||||||
|
return if object.conversation.nil?
|
||||||
|
|
||||||
if object.conversation.uri?
|
if object.conversation.uri?
|
||||||
object.conversation.uri
|
object.conversation.uri
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue