Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JIscariot committed Dec 19, 2024
1 parent 6bfff92 commit 1eac8b2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion yellowstone-grpc-client-nodejs/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,10 @@ export default class Client {
switch (endpointURL.protocol) {
case "https:":
port = "443";
case "http:":
break;
case "http:":
port = "80";
break;
}
}

Expand Down

0 comments on commit 1eac8b2

Please sign in to comment.