optimisations #3 increased auto-refresh time from 5s to 1min

This commit is contained in:
jokob-sk
2022-08-04 23:20:30 +10:00
parent 04044bfec5
commit 899b296bfe

View File

@@ -187,7 +187,7 @@ function stopTimerRefreshData () {
function newTimerRefreshData (refeshFunction) {
timerRefreshData = setTimeout (function() {
refeshFunction();
}, 5000);
}, 60000);
}