From e8bf3e4df6ec64d6a199bd61a58be1fe21bdfa6f Mon Sep 17 00:00:00 2001 From: Dreamacro <305009791@qq.com> Date: Sat, 30 May 2020 16:52:11 +0800 Subject: [PATCH] Fix: group error display --- src/containers/Proxies/components/Group/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) } }