From ace0ddf28cc469c6cfc2c785c0b3f4d927629863 Mon Sep 17 00:00:00 2001 From: James Lu Date: Wed, 2 Sep 2015 18:19:00 -0700 Subject: [PATCH] relay: use JOIN instead of SJOIN for non-burst joins Closes #96. --- plugins/relay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/relay.py b/plugins/relay.py index 3c3b430..cdc0931 100644 --- a/plugins/relay.py +++ b/plugins/relay.py @@ -288,7 +288,7 @@ def handle_join(irc, numeric, command, args): return ts = args['ts'] users = set(args['users']) - relayJoins(irc, channel, users, ts) + relayJoins(irc, channel, users, ts, burst=False) utils.add_hook(handle_join, 'JOIN') def handle_quit(irc, numeric, command, args):