diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/models/status.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/models/status.rb b/app/models/status.rb index e4cbfd2a6..2c0378d7f 100644 --- a/app/models/status.rb +++ b/app/models/status.rb @@ -501,6 +501,7 @@ class Status < ApplicationRecord def as_public_timeline(account = nil, local_only = false) query = (local_only || account.nil?) ? timeline_scope(local_only) : curated + query = query.without_replies if account&.local? query = query.without_reblogs if account&.user&.hide_boosts query = query.only_followers_of(account) if account&.user&.only_known? |