about summary refs log tree commit diff
path: root/app/lib/search_query_transformer.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2019-08-16 13:00:30 +0200
committerGitHub <noreply@github.com>2019-08-16 13:00:30 +0200
commit70da6d663078fb7d04aed387ac085afb2e9e2cd2 (patch)
treeaca79c42569a43f9ecbf3460243dd7a03ee55f6f /app/lib/search_query_transformer.rb
parent6e872c6dabf12fdd2619d4042495e52edd6079bd (diff)
Fix accounts search by full/partial display name and others (#11580)
- Restrict followers counts to local users to minimize local advantage
- Fix emoji shortcodes causing error in search
- Fix search syntax parse errors not being caught
Diffstat (limited to 'app/lib/search_query_transformer.rb')
-rw-r--r--app/lib/search_query_transformer.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/lib/search_query_transformer.rb b/app/lib/search_query_transformer.rb
index 2c4144790..6a299f59d 100644
--- a/app/lib/search_query_transformer.rb
+++ b/app/lib/search_query_transformer.rb
@@ -75,6 +75,8 @@ class SearchQueryTransformer < Parslet::Transform
 
     if clause[:term]
       TermClause.new(prefix, operator, clause[:term].to_s)
+    elsif clause[:shortcode]
+      TermClause.new(prefix, operator, ":#{clause[:term]}:")
     elsif clause[:phrase]
       PhraseClause.new(prefix, operator, clause[:phrase].map { |p| p[:term].to_s }.join(' '))
     else