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 Feb 11, 2019. It is now read-only.
Big up for your extension. I think I found an issue:
< input name="test[]" value="1" />
< input name="test[]" value="2" />
it seems to be the case that the upper example results in:
{ "test" : "2" }
it should be
{ "test" : [ "1", "2" ] }