From 5cf945ec172737d1c68aa943adc26caf607161fb Mon Sep 17 00:00:00 2001 From: MehdiSele <43189584+MehdiSele@users.noreply.github.com> Date: Tue, 28 Apr 2026 22:29:54 +0330 Subject: [PATCH] Change webPort alert condition from 2053 to 443 --- web/html/settings.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/html/settings.html b/web/html/settings.html index 769fbd37..26e5bdcf 100644 --- a/web/html/settings.html +++ b/web/html/settings.html @@ -580,7 +580,7 @@ if (!this.allSetting) return []; var alerts = [] if (window.location.protocol !== "https:") alerts.push('{{ i18n "secAlertSSL" }}'); - if (this.allSetting.webPort === 2053) alerts.push('{{ i18n "secAlertPanelPort" }}'); + if (this.allSetting.webPort === 443) alerts.push('{{ i18n "secAlertPanelPort" }}'); panelPath = window.location.pathname.split('/').length < 4 if (panelPath && this.allSetting.webBasePath == '/') alerts.push('{{ i18n "secAlertPanelURI" }}'); if (this.allSetting.subEnable) { @@ -609,4 +609,4 @@ } }); -{{ template "page/body_end" .}} \ No newline at end of file +{{ template "page/body_end" .}}