mirror of
https://github.com/MetaCubeX/metacubexd.git
synced 2024-11-10 05:15:35 +08:00
refactor(proxies): untrack msg
This commit is contained in:
parent
4ce628cec0
commit
04ccde246e
@ -1,4 +1,4 @@
|
|||||||
import { createSignal } from 'solid-js'
|
import { createSignal, untrack } from 'solid-js'
|
||||||
import {
|
import {
|
||||||
autoCloseConns,
|
autoCloseConns,
|
||||||
latencyTestTimeoutDuration,
|
latencyTestTimeoutDuration,
|
||||||
@ -94,7 +94,7 @@ export const useProxies = () => {
|
|||||||
if (autoCloseConns()) {
|
if (autoCloseConns()) {
|
||||||
// we dont use activeConns from useConnection here for better performance
|
// we dont use activeConns from useConnection here for better performance
|
||||||
// and we use empty array to restruct msg because they are closed and they won't have speed anyway
|
// and we use empty array to restruct msg because they are closed and they won't have speed anyway
|
||||||
|
untrack(() => {
|
||||||
const activeConns = restructRawMsgToConnection(
|
const activeConns = restructRawMsgToConnection(
|
||||||
latestConnectionMsg()?.connections ?? [],
|
latestConnectionMsg()?.connections ?? [],
|
||||||
[],
|
[],
|
||||||
@ -108,6 +108,7 @@ export const useProxies = () => {
|
|||||||
})
|
})
|
||||||
mergeAllConnections(activeConns)
|
mergeAllConnections(activeConns)
|
||||||
}
|
}
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
proxyGroup.now = proxyName
|
proxyGroup.now = proxyName
|
||||||
|
Loading…
Reference in New Issue
Block a user