From b9d241c6f554570e0677d9354b27dad21322e341 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 13 Sep 2017 11:05:02 +0200 Subject: Fix #4917 - Add missing suspend checks (#4921) --- app/services/activitypub/fetch_remote_status_service.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'app/services/activitypub/fetch_remote_status_service.rb') 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 -- cgit