Skip to content

Commit

Permalink
Fix grpc-message typo in call-stream.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
clww committed Aug 30, 2022
1 parent 63fccce commit a6e4f8f
Showing 1 changed file with 1 addition and 1 deletion.
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'] as string;
}
metadata.remove('grpc-message');
this.trace(
Expand Down

0 comments on commit a6e4f8f

Please sign in to comment.