0
0
Fork 0

Fix processing poll Updates (#10333)

ActivityPub::ProcessPollService was checking the JSON-LD context although
it was passed only the `Question` object embedded in the `Update` activity.
This commit is contained in:
ThibG 2019-03-21 14:24:09 +01:00 committed by Eugen Rochko
parent d66bbdd353
commit 62dd0b7f9c
2 changed files with 2 additions and 5 deletions

View file

@ -5,6 +5,7 @@ class ActivityPub::FetchRemotePollService < BaseService
def call(poll, on_behalf_of = nil)
json = fetch_resource(poll.status.uri, true, on_behalf_of)
return unless supported_context?(json)
ActivityPub::ProcessPollService.new.call(poll, json)
end
end