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
fetched = (result && typeof result !== "string" ? result.buffer.toString("utf8") : result || "");
the response has try to encode by utf8 but the result in Spanish is the � character, can be optional this "encode", an solution for this is using the iconv library
like this:
iconv.decode(new Buffer(response), "ISO-8859-1");
regards.
The text was updated successfully, but these errors were encountered:
Hi, Ive noticed that in the line 62
the response has try to encode by utf8 but the result in Spanish is the � character, can be optional this "encode", an solution for this is using the iconv library
like this:
regards.
The text was updated successfully, but these errors were encountered: