mirror of
https://github.com/iv-org/invidious
synced 2024-11-09 01:10:27 +00:00
Use error template for 404 and 500
This commit is contained in:
parent
ecb1999795
commit
dc45fbfad6
@ -269,12 +269,14 @@ get "/search" do |env|
|
||||
templated "search"
|
||||
end
|
||||
|
||||
get "/:path" do |env|
|
||||
env.redirect "/"
|
||||
error 404 do |env|
|
||||
error_message = "404 Page not found"
|
||||
templated "error"
|
||||
end
|
||||
|
||||
error 500 do |env|
|
||||
templated "index"
|
||||
error_message = "500 Server error"
|
||||
templated "error"
|
||||
end
|
||||
|
||||
public_folder "assets"
|
||||
|
Loading…
Reference in New Issue
Block a user