This is a follow up to #152, where we discovered a bug in transferring binary data sent from server to client.
While investigating that issue, we also discovered that binary data in buffers is currently getting dropped (since JSON.stringify() them).
This change (currently) will make it so they won't get dropped anymore, but some more investigation is needed to confirm how to handle buffers server-side.
This is a follow up to #152, where we discovered a bug in transferring binary data sent from server to client.
While investigating that issue, we also discovered that binary data in
buffers
is currently getting dropped (sinceJSON.stringify()
them).This change (currently) will make it so they won't get dropped anymore, but some more investigation is needed to confirm how to handle buffers server-side.