mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-03-16.git
synced 2024-08-15 00:53:18 +00:00
404 error with message and provide example
This commit is contained in:
parent
d4f3139b73
commit
56e505164d
2 changed files with 5 additions and 2 deletions
|
@ -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 '#{ex.channel}'. Are you sure that's an actual channel id? It will look like 'UC4QobU6STFB0P71PMvOGN5A'.")
|
||||
rescue ex
|
||||
return error_template(500, ex)
|
||||
end
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
class ChannelSearchException < InfoException
|
||||
def initialize(channel : String)
|
||||
super "Unable to find channel with id of '#{channel}'. Are you sure that's an actual channel id?"
|
||||
getter channel : String
|
||||
|
||||
def initialize(@channel)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue