mirror of
https://github.com/linuxserver/core.git
synced 2026-02-20 05:07:19 +08:00
Randomize reload time
This commit is contained in:
parent
4728c8e243
commit
b7ad4e83bc
@ -253,7 +253,7 @@ define(function(require, exports, module) {
|
||||
lastError = showError(err.message + ". Please reload this window.", -1);
|
||||
setTimeout(function() {
|
||||
window.location.reload();
|
||||
}, 5 * 60 * 1000);
|
||||
}, (Math.random() * 8) + 2 * 60 * 1000);
|
||||
break;
|
||||
default:
|
||||
lastError = showError(err, -1);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user