fixed encoder

This commit is contained in:
Vladimir Dronnikov
2012-01-16 12:21:41 -05:00
parent 2f691d3a07
commit 01260064cf

View File

@@ -40,7 +40,7 @@ exports.encodePacket = function (packet) {
// data fragment is optional
if (undefined !== packet.data) {
encoded += ':' + packet.data;
encoded += packet.data;
}
return '' + encoded;