about summary refs log tree commit diff
path: root/app/models/tag.rb
diff options
context:
space:
mode:
authorabcang <abcang1015@gmail.com>2020-09-08 00:47:41 +0900
committerGitHub <noreply@github.com>2020-09-07 17:47:41 +0200
commite79d719e92e120ba3dd6ec2d8521f7aaa9482634 (patch)
tree08ef699ffb616dea36fcfdf87a3ca68fc5aa9aec /app/models/tag.rb
parente8bc187845b78e4a94894c69ecf930a524ad2056 (diff)
Changed tag most_used to recently_used (#14760)
Diffstat (limited to 'app/models/tag.rb')
-rw-r--r--app/models/tag.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/tag.rb b/app/models/tag.rb
index bce76fc16..df2f86d95 100644
--- a/app/models/tag.rb
+++ b/app/models/tag.rb
@@ -39,7 +39,7 @@ class Tag < ApplicationRecord
   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 :recently_used, ->(account) { joins(:statuses).where(statuses: { id: account.statuses.select(:id).limit(1000) }).group(:id).order(Arel.sql('count(*) desc')) }
   scope :matches_name, ->(value) { where(arel_table[:name].matches("#{value}%")) }
 
   delegate :accounts_count,