This commit is contained in:
parent
30f923aac8
commit
2ed7ec5de1
1 changed files with 2 additions and 1 deletions
|
@ -311,7 +311,7 @@ def session(connection, client, ip, isssl=False):
|
||||||
try:
|
try:
|
||||||
if args[0] == data2["webirc_pass"]:
|
if args[0] == data2["webirc_pass"]:
|
||||||
hostname = args[2]
|
hostname = args[2]
|
||||||
client[0] = args[3]
|
client = (args[3], client[1])
|
||||||
connection.sendall(bytes(f":{server} NOTICE * :*** WebIRC detected, welcome to IRC!\r\n", "UTF-8"))
|
connection.sendall(bytes(f":{server} NOTICE * :*** WebIRC detected, welcome to IRC!\r\n", "UTF-8"))
|
||||||
if hostname != client[0]:
|
if hostname != client[0]:
|
||||||
connection.sendall(bytes(f":{server} NOTICE * :*** Got WebIRC hostname! {hostname}\r\n", "UTF-8"))
|
connection.sendall(bytes(f":{server} NOTICE * :*** Got WebIRC hostname! {hostname}\r\n", "UTF-8"))
|
||||||
|
@ -372,6 +372,7 @@ def session(connection, client, ip, isssl=False):
|
||||||
for comd in pendingCommands:
|
for comd in pendingCommands:
|
||||||
command = comd.split(" ")[0].upper()
|
command = comd.split(" ")[0].upper()
|
||||||
args = comd.split(" ")[1:]
|
args = comd.split(" ")[1:]
|
||||||
|
text = comd
|
||||||
processedExternally = False
|
processedExternally = False
|
||||||
for i in commandProviders:
|
for i in commandProviders:
|
||||||
cmdrun = i.command(command=command, args=args, nick=pending, ip=client[0], user=property_list[pending], connection=connection)
|
cmdrun = i.command(command=command, args=args, nick=pending, ip=client[0], user=property_list[pending], connection=connection)
|
||||||
|
|
Loading…
Add table
Reference in a new issue