Skip to content

Commit

Permalink
Merge pull request #2216 from murgatroid99/grpc-js_status_fix_fix
Browse files Browse the repository at this point in the history
grpc-js: Fix typo in previous status message handling fix
  • Loading branch information
murgatroid99 committed Aug 31, 2022
2 parents 7795014 + ccd855f commit ea1f2b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/grpc-js/package.json
@@ -1,6 +1,6 @@
{
"name": "@grpc/grpc-js",
"version": "1.6.11",
"version": "1.6.12",
"description": "gRPC Library for Node - pure JS implementation",
"homepage": "https://grpc.io/",
"repository": "https://github.com/grpc/grpc-node/tree/master/packages/grpc-js",
Expand Down
2 changes: 1 addition & 1 deletion packages/grpc-js/src/call-stream.ts
Expand Up @@ -491,7 +491,7 @@ export class Http2CallStream implements Call {
try {
details = decodeURI(metadataMap['grpc-message']);
} catch (e) {
details = metadataMap['grpc-messages'] as string;
details = metadataMap['grpc-message'];
}
metadata.remove('grpc-message');
this.trace(
Expand Down

0 comments on commit ea1f2b3

Please sign in to comment.