|
|
@ -6,7 +6,7 @@ class PrecomputeFeedService < BaseService
|
|
|
|
# @param [Account] account
|
|
|
|
# @param [Account] account
|
|
|
|
def call(_, account)
|
|
|
|
def call(_, account)
|
|
|
|
Status.as_home_timeline(account).limit(FeedManager::MAX_ITEMS).each do |status|
|
|
|
|
Status.as_home_timeline(account).limit(FeedManager::MAX_ITEMS).each do |status|
|
|
|
|
next if (status.direct_visibility? && !status.permitted?(account)) || FeedManager.instance.filter?(:home, status, account)
|
|
|
|
next if status.direct_visibility? || FeedManager.instance.filter?(:home, status, account)
|
|
|
|
redis.zadd(FeedManager.instance.key(:home, account.id), status.id, status.reblog? ? status.reblog_of_id : status.id)
|
|
|
|
redis.zadd(FeedManager.instance.key(:home, account.id), status.id, status.reblog? ? status.reblog_of_id : status.id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|