reduced the assumed time before restart from half to quarter

This commit is contained in:
Jack 2020-05-30 01:17:22 +01:00
parent 1e39a62fd6
commit b6f9c01d70

View file

@ -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;