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 was archived by the owner on Apr 12, 2024. It is now read-only.
I expect the built URL to be /foo?countries[]=US&countries[]=GB or, at the very least /foo?countries=["US","GB"] (this was the case of Angular.js 1.0.8).
However, the URL is actually /foo?countries=US&countries=GB - by all measures, this is an invalid query string.
The changes in $http's buildUrl function seem to have introduced the misbehaviour. It would be nice to see this fixed, as I need to do some really ugly patching to counter this.