url-encode not encoding all chars any longer?
nightshade427 opened this issue · 2 comments
nightshade427 commented
CL-USER> (quri:url-encode "{\"field\": \"test\", \"data\": 0, \"products\": {\"name\": \"apples\"}, \"status\": true}")
"{%22field%22%3A%20%22test%22%2C%20%22data%22%3A%200%2C%20%22products%22%3A%20{%22name%22%3A%20%22apples%22}%2C%20%22status%22%3A%20true}"
Used to be
CL-USER> (quri:url-encode "{\"field\": \"test\", \"data\": 0, \"products\": {\"name\": \"apples\"}, \"status\": true}")
"%7B%22field%22%3A%20%22test%22%2C%20%22data%22%3A%200%2C%20%22products%22%3A%20%7B%22name%22%3A%20%22apples%22%7D%2C%20%22status%22%3A%20true%7D"
fukamachi commented
Thank you for reporting. It has been fixed.
nightshade427 commented
Great thanks!