Check if json body is null on Activitipub::ProcessingWorker (#26021)

pull/25948/head
Jeong Arm 2 years ago committed by GitHub
parent bd33efdf16
commit 664b0ca8cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -8,6 +8,8 @@ class ActivityPub::ProcessCollectionService < BaseService
@json = original_json = Oj.load(body, mode: :strict)
@options = options
return unless @json.is_a?(Hash)
begin
@json = compact(@json) if @json['signature'].is_a?(Hash)
rescue JSON::LD::JsonLdError => e

Loading…
Cancel
Save