diff --git a/app/frontend/templates/base.html b/app/frontend/templates/base.html index 0325c376..76e6eb89 100755 --- a/app/frontend/templates/base.html +++ b/app/frontend/templates/base.html @@ -333,7 +333,7 @@ websocketTimeoutId = setTimeout(() => { webSocket.close(1000, "Closed due to Inactivity"); console.log('%c[Crafty Controller] %cClose Websocket due to Tab not active after 5s', 'font-weight: 900; color: #800080;', 'font-weight: 900; color: #eee;'); - }, 5000); + }, 10000); } else { clearTimeout(websocketTimeoutId) if (webSocket.getStatus() == WebSocket.CLOSED) { diff --git a/app/frontend/templates/public_base.html b/app/frontend/templates/public_base.html index e3eb5d89..77632762 100644 --- a/app/frontend/templates/public_base.html +++ b/app/frontend/templates/public_base.html @@ -160,7 +160,7 @@ websocketTimeoutId = setTimeout(() => { webSocket.close(1000, "Closed due to Inactivity"); console.log('%c[Crafty Controller] %cClose Websocket due to Tab not active after 5s', 'font-weight: 900; color: #800080;', 'font-weight: 900; color: #eee;'); - }, 5000); + }, 10000); } else { clearTimeout(websocketTimeoutId) if (webSocket.getStatus() == WebSocket.CLOSED) {