From 103f85522ea721741815981ddf79086e86d04397 Mon Sep 17 00:00:00 2001 From: ChrisKim <1515748548@qq.com> Date: Sat, 2 Mar 2024 20:19:52 +0800 Subject: [PATCH] fix: change absolute path to relative path --- web/frps/src/components/ProxyView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/frps/src/components/ProxyView.vue b/web/frps/src/components/ProxyView.vue index 2811a30f..97a6e071 100644 --- a/web/frps/src/components/ProxyView.vue +++ b/web/frps/src/components/ProxyView.vue @@ -111,7 +111,7 @@ const formatTrafficOut = (row: BaseProxy, _: TableColumnCtx) => { } const clearOfflineProxies = () => { - fetch('/api/proxies?status=offline', { + fetch('../api/proxies?status=offline', { method: 'DELETE', credentials: 'include', })