Browse Source

fix: increase delay checker concurrency

GyDi 2 năm trước cách đây
mục cha
commit
820d1e7570
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/components/proxy/proxy-group.tsx

+ 1 - 1
src/components/proxy/proxy-group.tsx

@@ -97,7 +97,7 @@ const ProxyGroup = ({ group }: Props) => {
     const names = sortedProxies.map((p) => p.name);
     const groupName = group.name;
 
-    await delayManager.checkListDelay({ names, groupName, skipNum: 8 }, () =>
+    await delayManager.checkListDelay({ names, groupName, skipNum: 16 }, () =>
       mutate("getProxies")
     );
   });