Skip to content

Commit

Permalink
default to tls
Browse files Browse the repository at this point in the history
  • Loading branch information
jackkav committed Sep 24, 2024
1 parent 0d9f808 commit 01ce9e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/insomnia/src/network/grpc/parse-grpc-url.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ export const parseGrpcUrl = (grpcUrl: string): { url: string; enableTls: boolean
if (lower.startsWith('grpcs://')) {
return { url: lower.slice(8), enableTls: true };
}
return { url: lower, enableTls: false };
return { url: lower, enableTls: true };
};

0 comments on commit 01ce9e0

Please sign in to comment.