mirror of
https://github.com/iv-org/invidious.git
synced 2024-06-07 19:40:52 +00:00
Improve error message for 500 and add redirect for 404
This commit is contained in:
parent
0f48d221b4
commit
dfd17bdd88
@ -3800,12 +3800,21 @@ error 404 do |env|
|
|||||||
halt env, status_code: 302
|
halt env, status_code: 302
|
||||||
end
|
end
|
||||||
|
|
||||||
error_message = "404 Page not found"
|
env.response.headers["Location"] = "/"
|
||||||
templated "error"
|
halt env, status_code: 302
|
||||||
end
|
end
|
||||||
|
|
||||||
error 500 do |env|
|
error 500 do |env|
|
||||||
error_message = "500 Server error"
|
error_message = <<-END_HTML
|
||||||
|
Looks like you've found a bug in Invidious. Feel free to open a new issue
|
||||||
|
<a href="https://github.com/omarroth/invidious/issues/github.com/omarroth/invidious">
|
||||||
|
here
|
||||||
|
</a>
|
||||||
|
or send an email to
|
||||||
|
<a href="mailto:omarroth@protonmail.com">
|
||||||
|
omarroth@protonmail.com
|
||||||
|
</a>.
|
||||||
|
END_HTML
|
||||||
templated "error"
|
templated "error"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user