mirror of
https://github.com/Viren070/mediaflow-proxy.git
synced 2025-12-01 23:22:12 +01:00
Fix retry logic condition in pollResults function
This commit is contained in:
@@ -413,7 +413,7 @@
|
||||
handleAuthError();
|
||||
return;
|
||||
}
|
||||
if (retryCount > maxRetries) {
|
||||
if (retryCount < maxRetries) {
|
||||
retryCount++
|
||||
await new Promise(resolve => setTimeout(resolve, 2000));
|
||||
continue;
|
||||
|
||||
Reference in New Issue
Block a user