From 01260064cfbd85aa1d047b52eeb99de56a6960bd Mon Sep 17 00:00:00 2001 From: Vladimir Dronnikov Date: Mon, 16 Jan 2012 12:21:41 -0500 Subject: [PATCH] fixed encoder --- lib/parser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/parser.js b/lib/parser.js index 13bbdf20..4d4e40bd 100644 --- a/lib/parser.js +++ b/lib/parser.js @@ -40,7 +40,7 @@ exports.encodePacket = function (packet) { // data fragment is optional if (undefined !== packet.data) { - encoded += ':' + packet.data; + encoded += packet.data; } return '' + encoded;