diff options
author | murgatroid99 <mlumish@google.com> | 2015-05-12 09:50:37 -0700 |
---|---|---|
committer | murgatroid99 <mlumish@google.com> | 2015-05-12 09:50:37 -0700 |
commit | c73a2be603f845a466ee83e2b399b3f634e0c941 (patch) | |
tree | ac694ffa637a9b3484ff3da2f708bbff9244b0bf /src/node | |
parent | 1e13bac7aa83d494d51dc2d09b24772567bf4b4a (diff) |
Updated deserialization code to fix message echoing
Diffstat (limited to 'src/node')
-rw-r--r-- | src/node/src/common.js | 2 |
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(); }; } |