mirror of
https://github.com/jlu5/PyLink.git
synced 2024-12-26 04:32:51 +01:00
ts6: fix wrong argument count when parsing INVITE ts
(cherry picked from commit 7cfc63d6ed
)
This commit is contained in:
parent
d2d176b6f9
commit
69f3ae52ec
@ -638,7 +638,7 @@ class TS6Protocol(TS6BaseProtocol):
|
|||||||
target = args[0]
|
target = args[0]
|
||||||
channel = self.irc.toLower(args[1])
|
channel = self.irc.toLower(args[1])
|
||||||
try:
|
try:
|
||||||
ts = args[3]
|
ts = args[2]
|
||||||
except IndexError:
|
except IndexError:
|
||||||
ts = int(time.time())
|
ts = int(time.time())
|
||||||
# We don't actually need to process this; it's just something plugins/hooks can use
|
# We don't actually need to process this; it's just something plugins/hooks can use
|
||||||
|
Loading…
Reference in New Issue
Block a user