diff options
author | multiple creatures <dev@multiple-creature.party> | 2020-03-01 22:59:46 -0600 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2020-03-01 22:59:46 -0600 |
commit | b1c815825489b9984128b1e67c0f6bf57254641d (patch) | |
tree | 021aebbfa32c2f221cd23b723e13a532ee42f108 | |
parent | d6ea5d47ede044a02dfecb3b99d534382e84487d (diff) |
remove sloooooooooooooow public timeline filters that don't apply to the monsterfork implementation in the first place
-rw-r--r-- | app/models/status.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/app/models/status.rb b/app/models/status.rb index 6c184448b..e707f3683 100644 --- a/app/models/status.rb +++ b/app/models/status.rb @@ -639,8 +639,6 @@ class Status < ApplicationRecord query = query.not_excluded_by_account(account) query = query.not_domain_blocked_by_account(account) unless local_only query = query.in_chosen_languages(account) if account.chosen_languages.present? - query = query.reply_not_excluded_by_account(account) unless tag_timeline - query = query.mention_not_excluded_by_account(account) unless !account.user.filters_enabled || account.custom_filters.enabled.blank? if account.user.invert_filters query = query.search_filtered_by_account(account.id) |