From b6f9c01d708f0a5cc1fe6b3e14692a6aee0fd86a Mon Sep 17 00:00:00 2001 From: Jack Date: Sat, 30 May 2020 01:17:22 +0100 Subject: [PATCH] reduced the assumed time before restart from half to quarter --- public/js/account.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/js/account.js b/public/js/account.js index a260c53f0..7781302c3 100644 --- a/public/js/account.js +++ b/public/js/account.js @@ -467,7 +467,7 @@ function refreshAccountPage() { tt = parseFloat(result.timeDuration); } if(result.restartCount != null){ - tt += (tt/2) * result.restartCount; + tt += (tt/4) * result.restartCount; } totalSeconds += tt; @@ -518,7 +518,7 @@ function refreshAccountPage() { tt = parseFloat(result.timeDuration); } if(result.restartCount != null){ - tt += (tt/2) * result.restartCount; + tt += (tt/4) * result.restartCount; } totalSecondsFiltered += tt;