We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug This line appears to be incorrect: https://github.com/silkimen/cordova-plugin-advanced-http/blob/master/www/url-util.js#L73
It has the incorrect number of args and doesn't seem to make sense / match other similar lines. It currently reads:
parts.push(serializeObject(parentKey + '[]' + array[i], encode));
I believe it should be changed to:
parts.push(serializeObject(parentKey + '[]', array[i], encode));
The text was updated successfully, but these errors were encountered:
I'd like to open a PR for this but I keep getting 403s when I try to publish the branch.
Sorry, something went wrong.
No branches or pull requests
Describe the bug
This line appears to be incorrect:
https://github.com/silkimen/cordova-plugin-advanced-http/blob/master/www/url-util.js#L73
It has the incorrect number of args and doesn't seem to make sense / match other similar lines. It currently reads:
I believe it should be changed to:
The text was updated successfully, but these errors were encountered: