Prechádzať zdrojové kódy

fix: increase delay checker concurrency

GyDi 2 rokov pred
rodič
commit
820d1e7570
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  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")
     );
   });