From 9d59d7b463e7f31ceedf27775a7ee3e8e071b4a1 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 3 Oct 2016 17:11:54 +0200 Subject: Adding a block model and filter mentions from blocked users (fix #60) --- app/services/precompute_feed_service.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/services') diff --git a/app/services/precompute_feed_service.rb b/app/services/precompute_feed_service.rb index cdeb4a92f..6b259fe80 100644 --- a/app/services/precompute_feed_service.rb +++ b/app/services/precompute_feed_service.rb @@ -7,7 +7,7 @@ class PrecomputeFeedService < BaseService instant_return = [] Status.send("as_#{type}_timeline", account).order('created_at desc').limit(FeedManager::MAX_ITEMS).find_each do |status| - next FeedManager.instance.filter?(type, status, account) + next if FeedManager.instance.filter?(type, status, account) redis.zadd(FeedManager.instance.key(type, account.id), status.id, status.id) instant_return << status unless instant_return.size > limit end -- cgit