From ef3aab69f22042538e7d4aa384aa76748879cc61 Mon Sep 17 00:00:00 2001 From: James Lu Date: Mon, 20 Jul 2015 16:50:18 -0700 Subject: [PATCH] relay: make '/' support in nicks explicit instead of implicit --- plugins/relay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/relay.py b/plugins/relay.py index caebae2..a06c462 100644 --- a/plugins/relay.py +++ b/plugins/relay.py @@ -27,7 +27,7 @@ def normalizeNick(irc, netname, nick, separator=None): orig_nick = nick protoname = irc.proto.__name__ maxnicklen = irc.maxnicklen - if protoname == 'charybdis': + if not protoname.startswith(('insp', 'unreal')): # Charybdis doesn't allow / in usernames, and will quit with # a protocol violation if there is one. separator = separator.replace('/', '|')