about summary refs log tree commit diff
path: root/app/services/block_domain_service.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/block_domain_service.rb')
-rw-r--r--app/services/block_domain_service.rb6
1 files changed, 1 insertions, 5 deletions
diff --git a/app/services/block_domain_service.rb b/app/services/block_domain_service.rb
index 363600d9f..1fae42c50 100644
--- a/app/services/block_domain_service.rb
+++ b/app/services/block_domain_service.rb
@@ -127,17 +127,13 @@ class BlockDomainService < BaseService
   end
 
   def known_account_ids
-    local_accounts | packmates | boosted_authors | faved_authors
+    local_accounts | packmates | boosted_authors
   end
 
   def boosted_authors
     Status.where(id: Status.local.reblogs.reorder(nil).select(:reblog_of_id)).reorder(nil).pluck(:account_id)
   end
 
-  def faved_authors
-    Status.where(id: Favourite.select(:status_id)).reorder(nil).pluck(:account_id)
-  end
-
   def local_accounts
     Account.local.pluck(:id)
   end