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
The problem is that req.url can contain a query string for example https://example.com/?testing=123 which would make req.url equal to /?testing=123 and it would never actually match a route. I discovered this after trying to figure out why the match property was null inside of the Document getInitialProps function. Can someone tell me if this is the intended behavior for some reason?
The text was updated successfully, but these errors were encountered:
Yamaha32088
changed the title
Potential bug with match property
Potential bug with route matching
Nov 27, 2023
I am wondering if I have found a bug or if what I have found is the intended behavior. The bug I believe is the line below
after.js/packages/after.js/src/renderApp.tsx
Line 141 in dbc362f
It passes in
req.url
instead ofpathname
like it does in this fileafter.js/packages/after.js/src/loadInitialProps.tsx
Line 19 in dbc362f
The problem is that
req.url
can contain a query string for examplehttps://example.com/?testing=123
which would makereq.url
equal to/?testing=123
and it would never actually match a route. I discovered this after trying to figure out why thematch
property wasnull
inside of the DocumentgetInitialProps
function. Can someone tell me if this is the intended behavior for some reason?The text was updated successfully, but these errors were encountered: