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
This outputs "msn.com/fr-fr"", while original buffer is "msn.com\/fr-fr".
This is a problem because we need to use the original buffer as is to do other processing.
The text was updated successfully, but these errors were encountered:
I've encountered this problem, too. Input that contains escape characters is unescaped, and a quote is added to the end of the buffer for each escape character present in the input:
When input data contains strings with escaped characters (e.g. "/"), input byte array passed to
gojay.Unmarshal
is altered.A sample code is given below
This outputs
"msn.com/fr-fr""
, while original buffer is"msn.com\/fr-fr"
.This is a problem because we need to use the original buffer as is to do other processing.
The text was updated successfully, but these errors were encountered: