fix(webclient): port

This commit is contained in:
lejianwen
2025-02-16 13:33:06 +08:00
parent 46f08a89d2
commit c7f3d13b7f

View File

@@ -11093,7 +11093,7 @@ function getUriFromRs(uri, isRelay = false, roffset = 0) {
if (!isHttps()) {
// http 直接走端口
const port = uriport ? parseInt(uriport) : defaultIdServerPort;
return p + domain + ":" + port + (isRelay ? roffset || 3 : 2)
return p + domain + ":" + (port + (isRelay ? roffset || 3 : 2))
}
// https 分情况
if (!window.location.port) {