3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-12-24 19:52:53 +01:00

relay: match P10 WALL* commands as notices

This commit is contained in:
James Lu 2018-01-08 20:54:49 -08:00
parent ec9063b9e8
commit 7a51220309

View File

@ -1320,7 +1320,9 @@ def handle_part(irc, numeric, command, args):
utils.add_hook(handle_part, 'PART')
def handle_messages(irc, numeric, command, args):
notice = (command in ('NOTICE', 'PYLINK_SELF_NOTICE'))
command = command.upper()
notice = 'NOTICE' in command or command.startswith('WALL')
target = args['target']
text = args['text']
if irc.is_internal_client(numeric) and irc.is_internal_client(target):