Skip to content

Commit 779f879

Browse files
wshAlianBlank
authored andcommitted
https 端口绑定笔误修正
1 parent 2e9c0e6 commit 779f879

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

GameFrameX.NetWork.HTTP/HttpServer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ public static Task Start(int httpPort, int httpsPort, List<BaseHttpHandler> base
123123
}
124124

125125
// HTTPS
126-
if (httpsPort > 0 && Net.PortIsAvailable(httpPort))
126+
if (httpsPort > 0 && Net.PortIsAvailable(httpsPort))
127127
{
128128
options.ListenAnyIP(httpsPort, listenOptions => { listenOptions.UseHttps(); });
129129
}

0 commit comments

Comments
 (0)