From 340f5bb79127d2e2cd26cbf43de4efb39c08a9a9 Mon Sep 17 00:00:00 2001 From: Mario Date: Mon, 9 Jun 2025 08:11:41 +0000 Subject: [PATCH] do not count iterations where we have not found a new thread --- view/js/main.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/view/js/main.js b/view/js/main.js index 6e547b576..eed1a21f1 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -1689,11 +1689,10 @@ const autoExpand = (function () { // Wait between iterations to allow UI to update if (newButtonsFound) { + iteration++; await new Promise(res => setTimeout(res, 700)); } - iteration++; - } while (newButtonsFound); console.log('All replies loaded!');