<!-- We can't debug your app for you, but you can ask questions and we will try to answer them. You can also ask a question in the OpenJs Slack community's #express channel: * Slack invite form: https://slack-invite.openjsf.org/ * #express-js channel: https://openjs-foundation.slack.com/archives/C02QB1731FH It is super important that you paste in samples of your code (no screenshots of code, [use markdown](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks))! Without seeing what your code looks like, we won't be able to help you very much. More is better when it comes to sharing code samples if you're having a problem. --> looks like https://github.com/expressjs/express/issues/4913 is not fixed in 4.18.2 this is part of my code: ``` app.use(middleware.a); app.get('/*', getter.a); app.post('/*', poster.a); app.use(middleware.b); app.use('/somepath/otherpath', middleware.c, middleware.d, middleware.e); app.get('/*', getter.b); app.all( '/unicorn', poster.b, poster.c, poster.d ); ``` POST /unicorn is not hitting app.all() but will work if changed to app.post() what am I missing?