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
get_param("reverse") does not return Some("") as expected for query string ?reverse
The expected behavior for URLParams is to treat params with no = in them as if the same as an empty value localhost:80/api/users?reverse should be equivalent to localhost:80/api/users?reverse=
get_param("reverse")
does not returnSome("")
as expected for query string?reverse
The expected behavior for URLParams is to treat params with no
=
in them as if the same as an empty valuelocalhost:80/api/users?reverse
should be equivalent tolocalhost:80/api/users?reverse=
reference:
https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams#empty_value_vs._no_value
The text was updated successfully, but these errors were encountered: