Fixed the start port

This commit is contained in:
2023-07-14 08:31:10 +07:00
parent 775c5da038
commit 62db7f8145
3 changed files with 7 additions and 2 deletions

View File

@@ -305,7 +305,7 @@ class HttpTunnelClient implements Client {
return;
}
} else {
if (address) {
if (typeof address !== "number" && address && address.includes(":")) {
const [host, portStr] = address.split(":");
if (host) {
options.host = host;
@@ -321,6 +321,7 @@ class HttpTunnelClient implements Client {
}
} else {
options.port = port;
console.log(`default port: ${port} will be forwared`);
}
}