Browse Source

Fix unreviewed hashtag not being found by exact case-insensitive match (#11976)

master^2
Eugen Rochko 4 years ago
committed by GitHub
parent
commit
2f90a38f44
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      app/services/tag_search_service.rb

+ 2
- 2
app/services/tag_search_service.rb View File

@@ -62,9 +62,9 @@ class TagSearchService < BaseService
},

{
term: {
match: {
name: {
value: @query,
query: @query,
},
},
},


Loading…
Cancel
Save