Patch
This small patch fixes client crashes for some IRCv3 supported clients like Revolution IRC
This commit is contained in:
parent
e7e69c81c3
commit
f219cebde6
1 changed files with 1 additions and 1 deletions
|
@ -131,7 +131,7 @@ def session(connection, client):
|
|||
ready = True
|
||||
elif command == "CAP":
|
||||
if args[0] == "LS":
|
||||
connection.sendall(bytes(f":{server} CAP * LS :\r\n", "UTF-8"))
|
||||
connection.sendall(bytes(f":{server} CAP * LS :ircat.xyz/foo\r\n", "UTF-8"))
|
||||
elif (ready and already_set) and not finished:
|
||||
print(f"User {pending} successfully logged in.")
|
||||
nickname_list[pending] = connection
|
||||
|
|
Loading…
Reference in a new issue