Remove accidental eval

This commit is contained in:
Anton
2022-09-26 09:06:22 +02:00
parent 2fe60c9684
commit 326dcd2562
+1 -1
View File
@@ -31,7 +31,7 @@ export function ws_connect(ws_url, callback) {
ws.onclose = function() {
setColor(maplabel, 'red');
setTimeout(ws_connect(ws_url, callback), reconnectTimeout, ws_url, callback);
setTimeout(ws_connect, reconnectTimeout, ws_url, callback);
};
ws.onmessage = function(event) {