Skip to content

Commit 618475a

Browse files
authored
Merge pull request #2217 from grpc/@grpc/[email protected]
v1.6.x merge into master, again
2 parents 63fccce + ea1f2b3 commit 618475a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/grpc-js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@grpc/grpc-js",
3-
"version": "1.6.11",
3+
"version": "1.6.12",
44
"description": "gRPC Library for Node - pure JS implementation",
55
"homepage": "https://grpc.io/",
66
"repository": "https://github.com/grpc/grpc-node/tree/master/packages/grpc-js",

packages/grpc-js/src/call-stream.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ export class Http2CallStream implements Call {
491491
try {
492492
details = decodeURI(metadataMap['grpc-message']);
493493
} catch (e) {
494-
details = metadataMap['grpc-messages'] as string;
494+
details = metadataMap['grpc-message'];
495495
}
496496
metadata.remove('grpc-message');
497497
this.trace(

0 commit comments

Comments
 (0)