From 2643d14c63e119b30d65e2b49aaf1ee7671816b7 Mon Sep 17 00:00:00 2001 From: swee Date: Sat, 25 Jan 2025 21:21:51 -0800 Subject: [PATCH] Update server.py --- server.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server.py b/server.py index 3d307fd..3f1b8cc 100644 --- a/server.py +++ b/server.py @@ -251,7 +251,8 @@ def session(connection, client, ip, isssl=False): try: identQuery = getident(client[0], client[1], isssl) responseee = identQuery["response"] - if identQuery["success"]: + print(identQUery) + if identQuery["success"] == True: connection.sendall(bytes(f":{server} NOTICE * :*** Uhm, Couldn't find your ident: {responseee}\r\n","UTF-8")) else: connection.sendall(bytes(f":{server} NOTICE * :*** Got ident! {responseee}\r\n","UTF-8"))