about summary refs log tree commit diff
path: root/app/services/activitypub/fetch_remote_status_service.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-09-13 11:05:02 +0200
committerGitHub <noreply@github.com>2017-09-13 11:05:02 +0200
commitb9d241c6f554570e0677d9354b27dad21322e341 (patch)
tree3892ec66e10eeadcbc6e21aadeba653b55b2b993 /app/services/activitypub/fetch_remote_status_service.rb
parent56af04dbb4663031c3c654b3f16d323cb64f8c7d (diff)
Fix #4917 - Add missing suspend checks (#4921)
Diffstat (limited to 'app/services/activitypub/fetch_remote_status_service.rb')
-rw-r--r--app/services/activitypub/fetch_remote_status_service.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/services/activitypub/fetch_remote_status_service.rb b/app/services/activitypub/fetch_remote_status_service.rb
index 68ca58d62..a95931afe 100644
--- a/app/services/activitypub/fetch_remote_status_service.rb
+++ b/app/services/activitypub/fetch_remote_status_service.rb
@@ -17,6 +17,8 @@ class ActivityPub::FetchRemoteStatusService < BaseService
     actor = ActivityPub::TagManager.instance.uri_to_resource(actor_id, Account)
     actor = ActivityPub::FetchRemoteAccountService.new.call(actor_id) if actor.nil?
 
+    return if actor.suspended?
+
     ActivityPub::Activity.factory(activity, actor).perform
   end