]> cat aescling's git repositories - mastodon.git/commitdiff
Fix admin setting to auto-approve hashtags not affecting query (#12130)
authorEugen Rochko <eugen@zeonfederated.com>
Thu, 10 Oct 2019 00:22:04 +0000 (02:22 +0200)
committerGitHub <noreply@github.com>
Thu, 10 Oct 2019 00:22:04 +0000 (02:22 +0200)
Follow-up to #12122

app/models/tag.rb
app/models/trending_tags.rb

index 59445a83b87bc73645ff37aed526efa146d57d25..d3a7e1e6d4e2d8f1c6cf47a1609b03d47ac8d3bc 100644 (file)
@@ -37,6 +37,7 @@ class Tag < ApplicationRecord
   scope :pending_review, -> { unreviewed.where.not(requested_review_at: nil) }
   scope :usable, -> { where(usable: [true, nil]) }
   scope :listable, -> { where(listable: [true, nil]) }
+  scope :trendable, -> { Setting.trendable_by_default ? where(trendable: [true, nil]) : where(trendable: true) }
   scope :discoverable, -> { listable.joins(:account_tag_stat).where(AccountTagStat.arel_table[:accounts_count].gt(0)).order(Arel.sql('account_tag_stats.accounts_count desc')) }
   scope :most_used, ->(account) { joins(:statuses).where(statuses: { account: account }).group(:id).order(Arel.sql('count(*) desc')) }
   scope :matches_name, ->(value) { where(arel_table[:name].matches("#{value}%")) }
index 8cdade42d4ac83ba2cdc9f8e70827013fffb4c70..c69f6d3c331cc8ca1e0b692be02dc46bc2f5fe4c 100644 (file)
@@ -90,7 +90,7 @@ class TrendingTags
       tag_ids = redis.zrevrange(KEY, 0, LIMIT - 1).map(&:to_i)
 
       tags = Tag.where(id: tag_ids)
-      tags = tags.where(trendable: true) if filtered
+      tags = tags.trendable if filtered
       tags = tags.each_with_object({}) { |tag, h| h[tag.id] = tag }
 
       tag_ids.map { |tag_id| tags[tag_id] }.compact.take(limit)