Check that we have enough PRIVMSG args for strip_color.py

This commit is contained in:
jesopo 2019-06-16 09:52:04 +01:00
parent c9de95f44a
commit 5b58cc05b6

View file

@ -12,13 +12,13 @@ class Module(ModuleManager.BaseModule):
@utils.hook("preprocess.send.privmsg") @utils.hook("preprocess.send.privmsg")
@utils.hook("preprocess.send.notice") @utils.hook("preprocess.send.notice")
def preprocess(self, event): def preprocess(self, event):
strip_color = event["server"].get_setting("strip-color", False) if len(event["line"].args) > 1:
target = event["line"].args[0] strip_color = event["server"].get_setting("strip-color", False)
if not strip_color and target in event["server"].channels: target = event["line"].args[0]
channel = event["server"].channels.get(target) if not strip_color and target in event["server"].channels:
strip_color = channel.get_setting("strip-color", False) channel = event["server"].channels.get(target)
strip_color = channel.get_setting("strip-color", False)
if strip_color: if strip_color:
message = event["line"].args.get(-1) message = event["line"].args[1]
if not message == None: event["line"].args[1] = utils.irc.strip_font(message)
event["line"].args[-1] = utils.irc.strip_font(message)