Fix ActivityPub::ProcessingWorker error on incoming malformed JSON-LD (#23416)

lolsob-rspec
Claire 2023-02-06 21:00:58 +01:00 committed by GitHub
parent dc6a090adc
commit 2b356a3de6
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ class ActivityPub::ProcessCollectionService < BaseService
@account = ActivityPub::LinkedDataSignature.new(@json).verify_actor!
@account = nil unless @account.is_a?(Account)
@account
rescue JSON::LD::JsonLdError => e
rescue JSON::LD::JsonLdError, RDF::WriterError => e
Rails.logger.debug "Could not verify LD-Signature for #{value_or_id(@json['actor'])}: #{e.message}"
nil
end