Only discard ssl.SSLEOFError in Server.run()

This commit is contained in:
XANTRONIX Development 2024-12-03 12:17:55 -05:00
parent 21a6f3e3f2
commit 58b2b5c1da

View file

@ -58,7 +58,7 @@ class Server():
thread = threading.Thread(target=spawn)
thread.start()
except:
except ssl.SSLEOFError as e:
pass
listener.close()