From 4f4820818a6f22d1a0f4b663bf57abe2266368e0 Mon Sep 17 00:00:00 2001 From: Mark Veidemanis Date: Tue, 16 Aug 2022 23:01:42 +0100 Subject: [PATCH] Log authentication messages --- modules/regproc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/regproc.py b/modules/regproc.py index b96dda2..d6d3c28 100644 --- a/modules/regproc.py +++ b/modules/regproc.py @@ -130,7 +130,7 @@ def attemptManualAuthentication(net, num): name = f"{net}{num}" if name not in main.IRCPool: return - main.IRCPool[name].msg(entity, identifymsg) + main.IRCPool[name].sendmsg(entity, identifymsg, in_query=True) def enableAuthentication(net, num, jump=True, run_now=False):