Explorar el Código

fix: increase delay checker concurrency

GyDi hace 2 años
padre
commit
820d1e7570
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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")
     );
   });