mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-02-02 07:34:08 +01:00
Comments can't follow line continuations
Signed-off-by: James Vega <jamessan@users.sourceforge.net>
This commit is contained in:
parent
278da67295
commit
e00e161a73
@ -1231,8 +1231,8 @@ class PluginMixin(BasePlugin, irclib.IrcCallback):
|
||||
irc = SimpleProxy(irc, msg)
|
||||
if msg.command == 'PRIVMSG':
|
||||
if self.noIgnore or \
|
||||
not ircutils.isUserHostmask(msg.prefix) or \ # Some services impl.
|
||||
not ircdb.checkIgnored(msg.prefix,msg.args[0]):
|
||||
not ircdb.checkIgnored(msg.prefix,msg.args[0]) or \
|
||||
not ircutils.isUserHostmask(msg.prefix): # Some services impl.
|
||||
self.__parent.__call__(irc, msg)
|
||||
else:
|
||||
self.__parent.__call__(irc, msg)
|
||||
|
Loading…
Reference in New Issue
Block a user