From 8e503000a6ff6af766c2b26b5a5ae942402e6c0c Mon Sep 17 00:00:00 2001 From: lelo Date: Mon, 21 Apr 2025 20:36:39 +0200 Subject: [PATCH] final fix? --- app.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app.py b/app.py index 3531c15..0eeaead 100755 --- a/app.py +++ b/app.py @@ -427,13 +427,12 @@ def query_recent_connections(): ] if connections != last_connections: - socketio.emit('recent_connections', connections, broadcast=True) + socketio.emit('recent_connections', connections) last_connections = connections.copy() socketio.sleep(1) finally: background_thread_running = False - print("No clients connected; stopping query thread.") @socketio.on('connect')