mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-04-11.git
synced 2024-08-15 00:43:26 +00:00
Use if/else instead of return in search route
This commit is contained in:
parent
a2f5342a83
commit
3de92b337d
1 changed files with 20 additions and 21 deletions
|
@ -45,9 +45,7 @@ class Invidious::Routes::Search < Invidious::Routes::BaseRoute
|
|||
# Display the full page search box implemented in #1977
|
||||
env.set "search", ""
|
||||
templated "search_homepage", navbar_search: false
|
||||
return
|
||||
end
|
||||
|
||||
else
|
||||
page = env.params.query["page"]?.try &.to_i?
|
||||
page ||= 1
|
||||
|
||||
|
@ -69,3 +67,4 @@ class Invidious::Routes::Search < Invidious::Routes::BaseRoute
|
|||
templated "search"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue