diff --git a/src/ext/lib/video-transform/Resizer.js b/src/ext/lib/video-transform/Resizer.js index 1f91376..b66821e 100644 --- a/src/ext/lib/video-transform/Resizer.js +++ b/src/ext/lib/video-transform/Resizer.js @@ -280,8 +280,8 @@ class Resizer { } // fire first few rechecks in quick succession, but start increasing timeout // later down the line. - if (iteration > 3) { - timeout = Math.max(2 * timeout, 1000); + if (iteration > 0 && iteration % 0 == 0) { + timeout = Math.min(2 * timeout, 1000); } this.logger.log('info', 'debug', `[Resizer::setAr] Sleeping for ${timeout} ms`); await sleep(timeout);