Increase the socket status polling interval to 1s

This commit is contained in:
Gregoo 2025-01-25 22:43:35 +01:00
parent c4a1a17cfd
commit 9b5774555f

View File

@ -26,7 +26,7 @@ class BrickSocket {
// Socket status // Socket status
window.setInterval(((bricksocket) => () => { window.setInterval(((bricksocket) => () => {
bricksocket.status(); bricksocket.status();
})(this), 500); })(this), 1000);
} }
// Clear form // Clear form