mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-27 21:19:31 +01:00
ts6: fix 'ts' value type in handle_invite
This commit is contained in:
parent
69f3ae52ec
commit
1acd654e6e
@ -638,7 +638,7 @@ class TS6Protocol(TS6BaseProtocol):
|
||||
target = args[0]
|
||||
channel = self.irc.toLower(args[1])
|
||||
try:
|
||||
ts = args[2]
|
||||
ts = int(args[2])
|
||||
except IndexError:
|
||||
ts = int(time.time())
|
||||
# We don't actually need to process this; it's just something plugins/hooks can use
|
||||
|
Loading…
Reference in New Issue
Block a user