diff options
author | Claire <claire.github-309c@sitedethib.com> | 2021-11-19 19:55:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-19 19:55:02 +0100 |
commit | 3ba7c85ec9bd5dcf75b30b00ed634b3b31a029af (patch) | |
tree | 6e0cd84a36280b314df2e1654e42f3dc05ee56e1 /app/models/tag.rb | |
parent | f2b376e9d82577dc630757a2b927d02f8bfcf4b0 (diff) | |
parent | 189cf652e6b3c6ee1d303282ca93823965f89f24 (diff) |
Merge pull request #1634 from ClearlyClaire/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to 'app/models/tag.rb')
-rw-r--r-- | app/models/tag.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/tag.rb b/app/models/tag.rb index 735c30608..dcce28391 100644 --- a/app/models/tag.rb +++ b/app/models/tag.rb @@ -39,7 +39,7 @@ class Tag < ApplicationRecord 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, ->(term) { where(arel_table[:name].lower.matches(arel_table.lower("#{sanitize_sql_like(Tag.normalize(term))}%"), nil, true)) } # Search with case-sensitive to use B-tree index - update_index('tags#tag', :self) + update_index('tags', :self) def to_param name |