Updated deserialization code to fix message echoing

pull/1561/head
murgatroid99 10 years ago
parent 1e13bac7aa
commit c73a2be603
  1. 2
      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();
};
}

Loading…
Cancel
Save