mirror of
https://github.com/iv-org/invidious.git
synced 2025-05-31 14:11:54 +05:30
404 error with message and provide example
This commit is contained in:
@@ -55,6 +55,8 @@ module Invidious::Routes::Search
|
|||||||
|
|
||||||
begin
|
begin
|
||||||
search_query, count, videos, operators = process_search_query(query, page, user, region: region)
|
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
|
rescue ex
|
||||||
return error_template(500, ex)
|
return error_template(500, ex)
|
||||||
end
|
end
|
||||||
|
@@ -1,6 +1,7 @@
|
|||||||
class ChannelSearchException < InfoException
|
class ChannelSearchException < InfoException
|
||||||
def initialize(channel : String)
|
getter channel : String
|
||||||
super "Unable to find channel with id of '#{channel}'. Are you sure that's an actual channel id?"
|
|
||||||
|
def initialize(@channel)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user