From f3428d264bd90a755621cd4d57762e2672f5a7a4 Mon Sep 17 00:00:00 2001 From: James Lu Date: Sun, 15 Nov 2015 21:16:03 -0800 Subject: [PATCH] ts6: actually send original TS in INVITE hook --- protocols/ts6.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/ts6.py b/protocols/ts6.py index c30fe00..1dd2301 100644 --- a/protocols/ts6.py +++ b/protocols/ts6.py @@ -588,7 +588,7 @@ class TS6Protocol(TS6BaseProtocol): except IndexError: ts = int(time.time()) # We don't actually need to process this; it's just something plugins/hooks can use - return {'target': target, 'channel': channel} + return {'target': target, 'channel': channel, 'ts': ts} def handle_chghost(self, numeric, command, args): """Handles incoming CHGHOST commands."""