From c07ae61548c055f7e245a01af9e1968ebfc9dadc Mon Sep 17 00:00:00 2001 From: Jon <134811123+jonsmy@users.noreply.github.com> Date: Mon, 26 Feb 2024 18:13:20 +0000 Subject: [PATCH] thread_autoupdater.js: decrease tslp backoff --- js/lcn/thread_autoupdater.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/lcn/thread_autoupdater.js b/js/lcn/thread_autoupdater.js index 2acf50dd..4bc68c6c 100644 --- a/js/lcn/thread_autoupdater.js +++ b/js/lcn/thread_autoupdater.js @@ -35,7 +35,7 @@ $().ready(() => { } const updateSecondsByTSLP = post_info => { - secondsCounter = Math.floor(((Date.now() - post_info.getCreatedAt().getTime()) / 30000)) + secondsCounter = Math.floor(((Date.now() - post_info.getCreatedAt().getTime()) / 120000)) secondsCounter = secondsCounter > 1000 ? 1000 : secondsCounter secondsCounter = secondsCounter < 11 ? 11 : secondsCounter }