You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@adriansuter I tried reaching out to you via Slack but it doesn't look like you've been active. Is there a way for me to direct message you somewhere else? I have something to ask you.
When the
RoutingMiddleware
is automatically instantiated by theRouteRunner
because routing was not performed:https://github.com/slimphp/Slim/blob/4.x/Slim/Routing/RouteRunner.php#L72
It calls
performRouting
but that means it doesn't append theRouteParser
via this call sinceprocess
is never called:https://github.com/slimphp/Slim/blob/4.x/Slim/Middleware/RoutingMiddleware.php#L58
We need to fix this by moving that line into the
performRouting
method.The text was updated successfully, but these errors were encountered: