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
{{ message }}
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.
When I attempt to use a url with multiple params of the same name (something that works fine in standard html urls) the activatedRoutes.parameters object ends up with only the last value. I would expect an array of values for that parameter, as has been the case for a while.
myhost/mypath;foo=bar;foo=baz should give me foo: [baz, bar] or something equivalent, instead I get { foo: baz } and lose the other values.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When I attempt to use a url with multiple params of the same name (something that works fine in standard html urls) the activatedRoutes.parameters object ends up with only the last value. I would expect an array of values for that parameter, as has been the case for a while.
myhost/mypath;foo=bar;foo=baz should give me foo: [baz, bar] or something equivalent, instead I get { foo: baz } and lose the other values.
The text was updated successfully, but these errors were encountered: