lloydzhou 1 éve
szülő
commit
6c1cbe120c
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      app/utils/stream.ts

+ 1 - 1
app/utils/stream.ts

@@ -91,7 +91,7 @@ export function fetch(url: string, options?: RequestInit): Promise<any> {
           headers,
         });
         if (status >= 300) {
-          setTimeout(close, 50);
+          setTimeout(close, 100);
         }
         return response;
       })