Update server.py
All checks were successful
/ check (push) Successful in 10s

This commit is contained in:
Nova Cat 2025-01-25 22:34:47 -08:00
parent a91e98b9c2
commit a2fe2289a3

View file

@ -46,7 +46,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 responsee == "":
return {"success": False, "response": "The connection was closed."}
else:
for i, v in enumerate(responsee.split(" ")):