Updated deserialization code to fix message echoing

This commit is contained in:
murgatroid99 2015-05-12 09:50:37 -07:00
parent 44e2358bbc
commit a70f6a955a
1 changed files with 1 additions and 1 deletions

View File

@ -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();
};
}