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
fix(httpx): wildcard route params keep gin's leading slash on all backends
After the seam migration c.Param("rest") for a *rest route returned "app.js"
on stdlib (ServeMux drops the slash) and "" on chi (capture stored under "*"),
where gin gave "/app.js". The dashboard builds "assets"+c.Param("filepath"),
so its assets 404'd and JS modules were served with an empty MIME type and
blocked by the browser. Normalize the wildcard capture to gin's leading-slash
form (new httpx.WildcardName helper) so c.Param is identical on gin/chi/stdlib.
0 commit comments