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
For a POST or PUT request with body format application/x-www-form-urlencoded, if there are final parameters with key, but without value these are left unprocessed and not being reported as arguments in the request.
Prerequisites
Description
For a POST or PUT request with body format
application/x-www-form-urlencoded
, if there are final parameters withkey
, but withoutvalue
these are left unprocessed and not being reported as arguments in the request.Steps to Reproduce
1 . Compile and launch this little code snippet:
Expected behavior:
Received args: {arg1=''}
Received args: {arg1='', arg2=''}
Actual behavior:
Received args: {}
Received args: {arg1=''}
Reproduces how often: 100%
Versions
master
compiled and 0.18.1 compiledAdditional Information
I'm submitting a PR with the potential fix.
The text was updated successfully, but these errors were encountered: