0
0
Fork 0

Improve ActivityPub/OStatus compatibility (#4632)

*Note: OStatus URIs are invalid for ActivityPub. But we have them for
as long as we want to keep old OStatus-sourced content and as long as
we remain OStatus-compatible.*

- In Announce handling, if object URI is not a URL, fallback to object URL
- Do not use specialized ThreadResolveWorker, rely on generalized handling
- When serializing notes, if parent's URI is not a URL, use parent's URL
This commit is contained in:
Eugen Rochko 2017-08-19 18:44:48 +02:00 committed by GitHub
parent 774b8661bc
commit 412ea87306
5 changed files with 20 additions and 37 deletions

View file

@ -27,7 +27,13 @@ class ActivityPub::NoteSerializer < ActiveModel::Serializer
end
def in_reply_to
ActivityPub::TagManager.instance.uri_for(object.thread) if object.reply?
return unless object.reply?
if object.thread.uri.nil? || object.thread.uri.start_with?('http')
ActivityPub::TagManager.instance.uri_for(object.thread)
else
object.thread.url
end
end
def published