Search: Change smart search inhibitor to a backslash

This commit is contained in:
Samantaz Fox 2024-04-27 23:21:27 +02:00
parent 441ea8937a
commit d3bff46fe0
No known key found for this signature in database
GPG Key ID: F42821059186176E
1 changed files with 2 additions and 2 deletions

View File

@ -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