1
0
Fork 0
mirror of https://github.com/iv-org/invidious.git synced 2025-06-29 17:07:21 -04:00

Fix error handling

This commit is contained in:
Omar Roth 2018-02-04 19:42:42 -06:00
parent d79c1ff3e9
commit a9ef931856

View file

@ -242,12 +242,12 @@ get "/search" do |env|
templated "search" templated "search"
end end
error 404 do |env| get "/:path" do |env|
templated "index" env.redirect "/"
end end
error 500 do |env| error 500 do |env|
templated "index" "Error 500"
end end
public_folder "assets" public_folder "assets"