diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/models/status.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/status.rb b/app/models/status.rb index f5f51779f..515553708 100644 --- a/app/models/status.rb +++ b/app/models/status.rb @@ -578,7 +578,7 @@ class Status < ApplicationRecord 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.custom_filters.nil? + unless account.custom_filters.empty? if account.user.invert_filters query = query.search_filtered_by_account(account.id) else |