Skip to content

Commit 181acef

Browse files
[fix] Fix double utf8 encoding for payloads (#81)
1 parent 339d367 commit 181acef

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed

lib/browser.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ exports.encodePayload = function (packets, supportsBinary, callback) {
331331
}
332332

333333
function encodeOne(packet, doneCallback) {
334-
exports.encodePacket(packet, !isBinary ? false : supportsBinary, true, function(message) {
334+
exports.encodePacket(packet, !isBinary ? false : supportsBinary, false, function(message) {
335335
doneCallback(null, setLengthHeader(message));
336336
});
337337
}
@@ -407,7 +407,7 @@ exports.decodePayload = function (data, binaryType, callback) {
407407
}
408408

409409
if (msg.length) {
410-
packet = exports.decodePacket(msg, binaryType, true);
410+
packet = exports.decodePacket(msg, binaryType, false);
411411

412412
if (err.type == packet.type && err.data == packet.data) {
413413
// parser error in individual packet - ignoring payload

lib/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ exports.encodePayload = function (packets, supportsBinary, callback) {
226226
}
227227

228228
function encodeOne(packet, doneCallback) {
229-
exports.encodePacket(packet, supportsBinary, true, function(message) {
229+
exports.encodePacket(packet, supportsBinary, false, function(message) {
230230
doneCallback(null, setLengthHeader(message));
231231
});
232232
}
@@ -302,7 +302,7 @@ exports.decodePayload = function (data, binaryType, callback) {
302302
}
303303

304304
if (msg.length) {
305-
packet = exports.decodePacket(msg, binaryType, true);
305+
packet = exports.decodePacket(msg, binaryType, false);
306306

307307
if (err.type == packet.type && err.data == packet.data) {
308308
// parser error in individual packet - ignoring payload

test/parser.js

+6-7
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,12 @@ module.exports = function(parser) {
193193
});
194194
});
195195
});
196+
197+
it('should not utf8 encode when dealing with strings only', function() {
198+
encPayload([{ type: 'message', data: '€€€' }, { type: 'message', data: 'α' }], function(data) {
199+
expect(data).to.eql('4:4€€€2:4α');
200+
});
201+
});
196202
});
197203

198204
describe('decoding error handling', function () {
@@ -255,13 +261,6 @@ module.exports = function(parser) {
255261
});
256262
});
257263

258-
it('should err on invalid utf8', function () {
259-
decPayload('2:4\uffff', function (packet, index, total) {
260-
var isLast = index + 1 == total;
261-
expect(packet).to.eql(err);
262-
expect(isLast).to.eql(true);
263-
});
264-
});
265264
});
266265
});
267266
});

0 commit comments

Comments
 (0)