Merge branch 'MHSanaei:main' into main

This commit is contained in:
somebodywashere 2023-12-21 16:31:59 +03:00 committed by GitHub
commit 59b3f6e927
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -384,9 +384,7 @@
if (msg.success) {
this.loading(true);
await PromiseUtil.sleep(5000);
var { webCertFile, webKeyFile, webDomain: host, webPort: port, webBasePath: base } = this.allSetting;
if (host == this.oldAllSetting.webDomain) host = null;
if (port == this.oldAllSetting.webPort) port = null;
let { webCertFile, webKeyFile, webDomain: host, webPort: port, webBasePath: base } = this.allSetting;
const isTLS = webCertFile !== "" || webKeyFile !== "";
const url = buildURL({ host, port, isTLS, base, path: "panel/settings" });
window.location.replace(url);