summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/invidious/search/query.cr4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/invidious/search/query.cr b/src/invidious/search/query.cr
index b3db0f63..a93bb3f9 100644
--- a/src/invidious/search/query.cr
+++ b/src/invidious/search/query.cr
@@ -58,9 +58,9 @@ module Invidious::Search
# Remove surrounding whitespaces. Mostly useful for copy/pasted URLs.
@raw_query = _raw_query.strip
- # Check for smart features (ex: URL search) inhibitor (exclamation mark).
+ # Check for smart features (ex: URL search) inhibitor (backslash).
# If inhibitor is present, remove it.
- if @raw_query.starts_with?('!')
+ if @raw_query.starts_with?('\\')
@inhibit_ssf = true
@raw_query = @raw_query[1..]
end