Don't attempt to register if it is disabled

This commit is contained in:
2022-07-21 13:39:56 +01:00
parent 7ffdc63eeb
commit e4a6e0d3c2
2 changed files with 18 additions and 0 deletions

View File

@@ -6,6 +6,11 @@ from copy import deepcopy
from random import choice
def needToRegister(net):
# Check if the network does not support authentication
networkObj = main.network[net]
if networkObj.auth == "none":
return False
# Check if the IRC network definition has registration disabled
inst = selectInst(net)
if "register" in inst.keys():
if inst["register"]: