fuel
fuel copied to clipboard
cUrlString URL should be enclosed in double quotes
Bug Report
Description
curl -i -H "Accept:application/json" https://somedomain.mycompany.com?a=b&c=d
The problem is that the URL is not enclosed in double quotes, so on a *nix system, it is chopped at &
, sent to background, and param c=d
is ignored.
To Reproduce
Simply log any call with query params using cUrlString and observe the URL.
Expected behavior
cUrlString URL should be enclosed in double quotes.
Environment
N/A
Ah, I think you are right! I will take this 🙇♀