mirror of
https://github.com/iv-org/invidious.git
synced 2025-02-06 09:55:24 -05:00
Kemal: Skip route if response was closed by handlers (#5073)
This commit is contained in:
commit
dc38bcdf17
@ -27,6 +27,7 @@ class Kemal::RouteHandler
|
||||
# Processes the route if it's a match. Otherwise renders 404.
|
||||
private def process_request(context)
|
||||
raise Kemal::Exceptions::RouteNotFound.new(context) unless context.route_found?
|
||||
return if context.response.closed?
|
||||
content = context.route.handler.call(context)
|
||||
|
||||
if !Kemal.config.error_handlers.empty? && Kemal.config.error_handlers.has_key?(context.response.status_code) && exclude_match?(context)
|
||||
|
Loading…
x
Reference in New Issue
Block a user