mirror of https://github.com/grpc/grpc-node.git
Updated deserialization code to fix message echoing
This commit is contained in:
parent
44e2358bbc
commit
a70f6a955a
|
@ -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…
Reference in New Issue