fuel icon indicating copy to clipboard operation
fuel copied to clipboard

cUrlString URL should be enclosed in double quotes

Open asarkar opened this issue 5 years ago • 1 comments

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

asarkar avatar Sep 19 '19 20:09 asarkar

Ah, I think you are right! I will take this 🙇‍♀

kittinunf avatar Oct 06 '19 07:10 kittinunf