Merge pull request #2821 from matthewmcgarvey/channel-search

Handle invalid channel id in channel: search
This commit is contained in:
Samantaz Fox
2022-01-25 19:34:43 +01:00
committed by GitHub
2 changed files with 11 additions and 2 deletions

View File

@@ -55,6 +55,8 @@ module Invidious::Routes::Search
begin
search_query, count, videos, operators = process_search_query(query, page, user, region: region)
rescue ex : ChannelSearchException
return error_template(404, "Unable to find channel with id of '#{HTML.escape(ex.channel)}'. Are you sure that's an actual channel id? It should look like 'UC4QobU6STFB0P71PMvOGN5A'.")
rescue ex
return error_template(500, ex)
end