mirror of
https://github.com/jlu5/PyLink.git
synced 2025-02-02 15:44:06 +01:00
nefarious: fix type error in handle_join
This commit is contained in:
parent
1676d33795
commit
8a7c39691f
@ -533,7 +533,7 @@ class P10Protocol(Protocol):
|
|||||||
"""Handles incoming JOINs and channel creations."""
|
"""Handles incoming JOINs and channel creations."""
|
||||||
# <- ABAAA C #test3 1460744371
|
# <- ABAAA C #test3 1460744371
|
||||||
# <- ABAAB J #test3 1460744371
|
# <- ABAAB J #test3 1460744371
|
||||||
ts = args[1]
|
ts = int(args[1])
|
||||||
if args[0] == '0' and command == 'JOIN':
|
if args[0] == '0' and command == 'JOIN':
|
||||||
# /join 0; part the user from all channels
|
# /join 0; part the user from all channels
|
||||||
oldchans = self.irc.users[numeric].channels.copy()
|
oldchans = self.irc.users[numeric].channels.copy()
|
||||||
|
Loading…
Reference in New Issue
Block a user