mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-04 08:39:49 +01:00
Use string interpolation instead of concatenation
Co-authored-by: Samantaz Fox <coding@samantaz.fr>
This commit is contained in:
parent
12b4dd9191
commit
8bd2e60abc
@ -278,7 +278,7 @@ module Invidious::Routes::Channels
|
||||
return error_template(500, ex)
|
||||
end
|
||||
|
||||
env.set "search", "channel:" + ucid + " "
|
||||
env.set "search", "channel:#{ucid} "
|
||||
return {locale, user, subscriptions, continuation, ucid, channel}
|
||||
end
|
||||
end
|
||||
|
@ -66,7 +66,7 @@ module Invidious::Routes::Search
|
||||
redirect_url = Invidious::Frontend::Misc.redirect_url(env)
|
||||
|
||||
if query.type == Invidious::Search::Query::Type::Channel
|
||||
env.set "search", "channel:" + query.channel + " " + query.text
|
||||
env.set "search", "channel:#{query.channel} #{query.text}"
|
||||
else
|
||||
env.set "search", query.text
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user