aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/node
diff options
context:
space:
mode:
authorGravatar murgatroid99 <mlumish@google.com>2015-05-12 09:50:37 -0700
committerGravatar murgatroid99 <mlumish@google.com>2015-05-12 09:50:37 -0700
commitc73a2be603f845a466ee83e2b399b3f634e0c941 (patch)
treeac694ffa637a9b3484ff3da2f708bbff9244b0bf /src/node
parent1e13bac7aa83d494d51dc2d09b24772567bf4b4a (diff)
Updated deserialization code to fix message echoing
Diffstat (limited to 'src/node')
-rw-r--r--src/node/src/common.js2
1 files changed, 1 insertions, 1 deletions
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();
};
}