From c73a2be603f845a466ee83e2b399b3f634e0c941 Mon Sep 17 00:00:00 2001 From: murgatroid99 Date: Tue, 12 May 2015 09:50:37 -0700 Subject: Updated deserialization code to fix message echoing --- src/node/src/common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/node') diff --git a/src/node/src/common.js b/src/node/src/common.js index 55a6b13782..98917c0fdd 100644 --- a/src/node/src/common.js +++ b/src/node/src/common.js @@ -50,7 +50,7 @@ function deserializeCls(cls) { * @return {cls} The resulting object */ return function deserialize(arg_buf) { - return cls.decode(arg_buf); + return cls.decode(arg_buf).toRaw(); }; } -- cgit v1.2.3