about summary refs log tree commit diff
path: root/app/services/activitypub
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/activitypub')
-rw-r--r--app/services/activitypub/fetch_replies_service.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/app/services/activitypub/fetch_replies_service.rb b/app/services/activitypub/fetch_replies_service.rb
index e113e4937..e36ca9f39 100644
--- a/app/services/activitypub/fetch_replies_service.rb
+++ b/app/services/activitypub/fetch_replies_service.rb
@@ -3,12 +3,7 @@
 class ActivityPub::FetchRepliesService < BaseService
   def call(parent_status, collection, **options)
     @account = parent_status.account
-    return if @account.suspended?
-
     fetch_collection_items(collection, **options)
-    return if (collection.is_a?(String) && collection == @account.outbox_url) || @account.local? || @account.silenced? || @account.passive_relationships.exists? || !@account.active_relationships.exists?
-
-    fetch_collection_items(@account.outbox_url, **options)
   rescue ActiveRecord::RecordNotFound
     nil
   end