Don't attempt secondary registration if it is disabled
This commit is contained in:
parent
e4a6e0d3c2
commit
9d4d31fdc2
|
@ -559,6 +559,7 @@ class IRCBot(IRCClient):
|
|||
"registered"
|
||||
]: # TODO: add check for register request sent, only send it once
|
||||
if main.config["AutoReg"]:
|
||||
if not self.authenticated:
|
||||
self._regAttempt = reactor.callLater(5, regproc.registerAccount, self.net, self.num)
|
||||
# regproc.registerAccount(self.net, self.num)
|
||||
try:
|
||||
|
|
Loading…
Reference in New Issue