about summary refs log tree commit diff
path: root/app/services/activitypub/process_collection_service.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-09-26 01:06:13 +0200
committerGitHub <noreply@github.com>2017-09-26 01:06:13 +0200
commitcf7fbf2c569473e9a984bd3042930f9c5a060a23 (patch)
tree706d5604c56be77ae03dae6318d15b52c8e397e2 /app/services/activitypub/process_collection_service.rb
parent91e5b0dfdbfbf9415e6bff14cbc3a80bc6e53f5c (diff)
Fix #5059 - Stop processing payload if it's from local account (#5100)
Diffstat (limited to 'app/services/activitypub/process_collection_service.rb')
-rw-r--r--app/services/activitypub/process_collection_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/activitypub/process_collection_service.rb b/app/services/activitypub/process_collection_service.rb
index 0c6736a3f..59cb65c65 100644
--- a/app/services/activitypub/process_collection_service.rb
+++ b/app/services/activitypub/process_collection_service.rb
@@ -9,7 +9,7 @@ class ActivityPub::ProcessCollectionService < BaseService
 
     return unless supported_context?
     return if different_actor? && verify_account!.nil?
-    return if @account.suspended?
+    return if @account.suspended? || @account.local?
 
     case @json['type']
     when 'Collection', 'CollectionPage'