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:
@ -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
|
||||
|
Reference in New Issue
Block a user