From ca3585bd5cb1b66fa5f35c4b6f9e50829cbb63c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BF=83=E9=9A=A8=E7=B7=A3=E5=8B=95?= Date: Wed, 10 Sep 2025 16:30:41 +0800 Subject: [PATCH] v2.7.2 --- web/html/modals/inbound_modal.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/web/html/modals/inbound_modal.html b/web/html/modals/inbound_modal.html index dab6dcc8..94b91368 100644 --- a/web/html/modals/inbound_modal.html +++ b/web/html/modals/inbound_modal.html @@ -132,7 +132,7 @@ }, async getNewX25519Cert() { inModal.loading(true); - const msg = await HttpUtil.post('/server/getNewX25519Cert'); + const msg = await HttpUtil.get('/panel/api/server/getNewX25519Cert'); inModal.loading(false); if (!msg.success) { return; @@ -142,7 +142,7 @@ }, async getNewmldsa65() { inModal.loading(true); - const msg = await HttpUtil.post('/server/getNewmldsa65'); + const msg = await HttpUtil.get('/panel/api/server/getNewmldsa65'); inModal.loading(false); if (!msg.success) { return; @@ -152,7 +152,7 @@ }, async getNewEchCert() { inModal.loading(true); - const msg = await HttpUtil.post('/server/getNewEchCert', { sni: inModal.inbound.stream.tls.sni }); + const msg = await HttpUtil.post('/panel/api/server/getNewEchCert', { sni: inModal.inbound.stream.tls.sni }); inModal.loading(false); if (!msg.success) { return; @@ -162,7 +162,7 @@ }, async getNewVlessEnc() { inModal.loading(true); - const msg = await HttpUtil.post('/server/getNewVlessEnc'); + const msg = await HttpUtil.get('/panel/api/server/getNewVlessEnc'); inModal.loading(false); if (!msg.success) {