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
The latest 6.0 beta release should support sending buffers as well as strings, no matter in which encoding. It would be great if you could try it out! The new version has a new API that addresses some fundamental issues with the previous API, but it does include a compatibility layer that should make upgrading easier. See #189 for the reasoning behind the new API. If you run into any problems feel free to report it here or in a new issue.
Seems it has to do with the conversion to a string and then utf-8 encoding.
A buffer, for example with the following data:
<48 128 1>
is changed to something like
<48 262 191>
The code in question is in node_modules/zeromq/lib/index.js:
The text was updated successfully, but these errors were encountered: