Browse Source

fix: change absolute path to relative path (#4038)

pull/4040/head
Haotian Zou 9 months ago committed by GitHub
parent
commit
f63b4d5c29
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      web/frps/src/components/ProxyView.vue

2
web/frps/src/components/ProxyView.vue

@ -111,7 +111,7 @@ const formatTrafficOut = (row: BaseProxy, _: TableColumnCtx<BaseProxy>) => {
}
const clearOfflineProxies = () => {
fetch('/api/proxies?status=offline', {
fetch('../api/proxies?status=offline', {
method: 'DELETE',
credentials: 'include',
})

Loading…
Cancel
Save