Updated as_pro_timeline to check for 2 hours ago

• Updated:
- as_pro_timeline to check for 2 hours ago
This commit is contained in:
mgabdev 2020-07-08 17:46:40 -05:00
parent 22c0957752
commit 2f2e1a13d0
1 changed files with 1 additions and 1 deletions

View File

@ -342,7 +342,7 @@ class Status < ApplicationRecord
end
def as_pro_timeline(account = nil)
query = timeline_scope.without_replies.popular_accounts.where('statuses.created_at > ?', 2.days.ago)
query = timeline_scope.without_replies.popular_accounts.where('statuses.created_at > ?', 2.hours.ago)
apply_timeline_filters(query, account)
end