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

This commit is contained in:
Jeong Arm 2023-07-17 22:51:30 +09:00 committed by GitHub
parent bd33efdf16
commit 664b0ca8cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -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