mirror of https://github.com/iv-org/invidious.git
Fallback on ucid for channel search when author contains hyphen
This commit is contained in:
parent
06aa1bb90f
commit
898b768b30
|
@ -2192,7 +2192,7 @@ get "/channel/:ucid" do |env|
|
|||
end
|
||||
|
||||
if !auto_generated
|
||||
if author.includes? " "
|
||||
if author.includes?(" ") || author.includes?("-")
|
||||
env.set "search", "channel:#{ucid} "
|
||||
else
|
||||
env.set "search", "channel:#{author.downcase} "
|
||||
|
|
Loading…
Reference in New Issue