Fix - Order of checks in ActivityPub handler ()

pull/5280/head
Eugen Rochko committed by GitHub
parent cfa68907ae
commit 3888a12c79

@ -11,7 +11,7 @@ class ActivityPub::FetchRemoteStatusService < BaseService
body_to_json(prefetched_body) body_to_json(prefetched_body)
end end
return unless expected_type? && supported_context? return unless supported_context? && expected_type?
return if actor_id.nil? || !trustworthy_attribution?(@json['id'], actor_id) return if actor_id.nil? || !trustworthy_attribution?(@json['id'], actor_id)

Loading…
Cancel
Save