This commit is contained in:
2026-03-24 22:13:20 +01:00
parent d4a32c660c
commit 4617819085
-3
View File
@@ -325,10 +325,7 @@ def run_server():
conn.sendall(f"M{tef.modulation}\n".encode())
while True:
try:
if conn.fileno() == -1: break
readable, _, _ = select.select([conn], [], [], 0.03)
except (ValueError, OSError): break
if readable:
data = conn.recv(256)
if not data: break