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
There appears to be a discrepancy between the docs and the implementation regarding the separation char for param name/value pairs used in key expressions.
Describe the bug
There appears to be a discrepancy between the docs and the implementation regarding the separation char for param name/value pairs used in key expressions.
The docs specify
&
.From the source code docs:
This is consistent with the referenced description in the roadmap repo.
However, the implementation uses
;
.I can confirm that params specified as
foo?bar=123&baz=456
results in a single parambar
of123&baz=456
.foo?bar=123;baz=456
yields the two paramsfoo
andbar
.I didn't see any user facing examples that call attention to this issue one way or another.
To reproduce
See description.
System info
Applies to any system.
The text was updated successfully, but these errors were encountered: