Skip to content
Snippets Groups Projects
Unverified Commit 4c994956 authored by dogelover911's avatar dogelover911 Committed by GitHub
Browse files

FeedManager: skip account when target_account's last status is too old (#18009)

parent dc503472
No related branches found
No related tags found
No related merge requests found
......@@ -243,7 +243,7 @@ class FeedManager
account.following.includes(:account_stat).find_each do |target_account|
if redis.zcard(timeline_key) >= limit
oldest_home_score = redis.zrange(timeline_key, 0, 0, with_scores: true).first.last.to_i
last_status_score = Mastodon::Snowflake.id_at(account.last_status_at)
last_status_score = Mastodon::Snowflake.id_at(target_account.last_status_at)
# If the feed is full and this account has not posted more recently
# than the last item on the feed, then we can skip the whole account
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment