[FIX] Change default refresh rate to 5 seconds

This commit is contained in:
Gravita 2023-10-29 03:34:00 +07:00
parent 9e83e8bec8
commit e85a12afab

View file

@ -50,7 +50,7 @@ public static synchronized void startAutoRefresh() {
} catch (Exception e) {
LogHelper.error(e);
}
}, 60, 60, TimeUnit.SECONDS);
}, 5, 5, TimeUnit.SECONDS);
autoRefreshRunning = true;
}
}