diff --git a/src/containers/Proxies/components/Group/index.tsx b/src/containers/Proxies/components/Group/index.tsx index ea32a10..1c670ea 100644 --- a/src/containers/Proxies/components/Group/index.tsx +++ b/src/containers/Proxies/components/Group/index.tsx @@ -37,7 +37,7 @@ export function Group (props: GroupProps) { const set = new Set() for (const proxy of config.all) { const history = proxyMap.get(proxy)?.history - if (history?.length && history.slice(-1)[0].delay !== 0) { + if (history?.length && history.slice(-1)[0].delay === 0) { set.add(proxy) } }