Update server.py
Some checks failed
/ check (push) Failing after 10s

This commit is contained in:
Nova Cat 2025-01-25 21:18:44 -08:00
parent 631253a049
commit 06fbc24444

View file

@ -45,7 +45,7 @@ def getident(hostt:str, clientport:int, ssll:bool):
return {"success": False, "response": "No user was found by the server."}
elif "ERROR :" in responsee:
return {"success": False, "response": "The ident server had an error"}
elif reponsee = "":
elif reponsee == "":
return {"success": False, "response": "The connection was closed."}
else:
for i, v in enumerate(responsee.split(" ")):