Remove processing of collections of activities (#39932)

This commit is contained in:
Claire
2026-07-28 10:30:21 +02:00
committed by GitHub
parent dfa77897ca
commit 8552bd79b0
4 changed files with 9 additions and 24 deletions

View File

@@ -13,7 +13,7 @@ class ActivityPub::ProcessingWorker
return if actor.nil?
ActivityPub::ProcessCollectionService.new.call(body, actor, override_timestamps: true, delivered_to_account_id: delivered_to_account_id, delivery: true)
ActivityPub::ProcessActivityService.new.call(body, actor, override_timestamps: true, delivered_to_account_id: delivered_to_account_id, delivery: true)
rescue ActiveRecord::RecordInvalid => e
Rails.logger.debug { "Error processing incoming ActivityPub object: #{e}" }
end