diff options
| author | Sanaei <ho3ein.sanaei@gmail.com> | 2025-03-07 14:40:35 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-07 14:40:35 +0300 |
| commit | 42fa64770bab9f9fb52e0cdb6d5dd82d66f19c35 (patch) | |
| tree | 17d8a98faecccbda02b98ede48adf020d5e8d2f9 /web/html/xui/settings.html | |
| parent | 2d8cca3a2ec1ae9034b7bc28a2fb5f2260f43e1a (diff) | |
| parent | 0a207b8a2c0629b7f1996025a40a10fbe58d05d0 (diff) | |
Merge pull request #2732 from shishkevichd/refactor/refactor-1
Code refactoring
Diffstat (limited to 'web/html/xui/settings.html')
| -rw-r--r-- | web/html/xui/settings.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/html/xui/settings.html b/web/html/xui/settings.html index 1cccd28d..58a1bf8a 100644 --- a/web/html/xui/settings.html +++ b/web/html/xui/settings.html @@ -832,7 +832,7 @@ if (host == this.oldAllSetting.webDomain) host = null; if (port == this.oldAllSetting.webPort) port = null; const isTLS = webCertFile !== "" || webKeyFile !== ""; - const url = buildURL({ host, port, isTLS, base, path: "panel/settings" }); + const url = URLBuilder.buildURL({ host, port, isTLS, base, path: "panel/settings" }); window.location.replace(url); } }, |
