From 234fae09ad2e789a478858362320e6a3f73b960f Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Wed, 24 Jul 2019 21:36:13 -0500 Subject: [PATCH] don't include `reject_payload!` auto-rejections in logger because that leaks objects sent to the server that weren't supposed to be --- app/lib/activitypub/activity.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/app/lib/activitypub/activity.rb b/app/lib/activitypub/activity.rb index 11775c84b..fee8fcd25 100644 --- a/app/lib/activitypub/activity.rb +++ b/app/lib/activitypub/activity.rb @@ -184,7 +184,6 @@ class ActivityPub::Activity def reject_payload! Rails.logger.info("Rejected #{@json['type']} activity #{@json['id']} from #{@account.uri}#{@options[:relayed_through_account] && "via #{@options[:relayed_through_account].uri}"}") - LogWorker.perform_async("\xf0\x9f\x9a\xab Auto-rejected an incoming '#{@json['type']}#{@object && " #{@object['type']}".rstrip}' from #{@json['id']}#{@options[:relayed_through_account] && " via #{@options[:relayed_through_account].uri}"} because the object could not be validated.") nil end end