From c18503e7ba017331f4b0f136a4baee00e4ec76b7 Mon Sep 17 00:00:00 2001 From: "Shishkevich D." <135337715+shishkevichd@users.noreply.github.com> Date: Tue, 24 Jun 2025 16:21:15 +0000 Subject: [PATCH] chore: mark `2053` port as unsecured --- web/html/settings.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/html/settings.html b/web/html/settings.html index 840778f5..1c55ea81 100644 --- a/web/html/settings.html +++ b/web/html/settings.html @@ -548,7 +548,7 @@ if (!this.allSetting) return []; var alerts = [] if (window.location.protocol !== "https:") alerts.push('{{ i18n "secAlertSSL" }}'); - if (this.allSetting.webPort == 54321) alerts.push('{{ i18n "secAlertPanelPort" }}'); + if (this.allSetting.webPort === 2053) alerts.push('{{ i18n "secAlertPanelPort" }}'); panelPath = window.location.pathname.split('/').length < 4 if (panelPath && this.allSetting.webBasePath == '/') alerts.push('{{ i18n "secAlertPanelURI" }}'); if (this.allSetting.subEnable) {