From b1c815825489b9984128b1e67c0f6bf57254641d Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Sun, 1 Mar 2020 22:59:46 -0600 Subject: remove sloooooooooooooow public timeline filters that don't apply to the monsterfork implementation in the first place --- app/models/status.rb | 2 -- 1 file changed, 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) -- cgit