mirror of
https://github.com/glitch-soc/mastodon.git
synced 2024-11-27 18:40:12 -05:00
Merge remote-tracking branch 'upstream/master' into gs-master
This commit is contained in:
commit
7e9d93472c
@ -100,11 +100,24 @@ class FeedManager
|
|||||||
end
|
end
|
||||||
|
|
||||||
def populate_feed(account)
|
def populate_feed(account)
|
||||||
prepopulate_limit = FeedManager::MAX_ITEMS / 4
|
added = 0
|
||||||
statuses = Status.as_home_timeline(account).order(account_id: :desc).limit(prepopulate_limit)
|
limit = FeedManager::MAX_ITEMS / 2
|
||||||
statuses.reverse_each do |status|
|
max_id = nil
|
||||||
|
|
||||||
|
loop do
|
||||||
|
statuses = Status.as_home_timeline(account)
|
||||||
|
.paginate_by_max_id(limit, max_id)
|
||||||
|
|
||||||
|
break if statuses.empty?
|
||||||
|
|
||||||
|
statuses.each do |status|
|
||||||
next if filter_from_home?(status, account)
|
next if filter_from_home?(status, account)
|
||||||
add_to_feed(:home, account, status)
|
added += 1 if add_to_feed(:home, account, status)
|
||||||
|
end
|
||||||
|
|
||||||
|
break unless added.zero?
|
||||||
|
|
||||||
|
max_id = statuses.last.id
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user