mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-27 13:19:24 +01:00
Fixes SR #2233215.
This commit is contained in:
parent
ce8b3a556f
commit
bc70ab8aad
@ -1230,7 +1230,9 @@ class PluginMixin(BasePlugin, irclib.IrcCallback):
|
|||||||
def __call__(self, irc, msg):
|
def __call__(self, irc, msg):
|
||||||
irc = SimpleProxy(irc, msg)
|
irc = SimpleProxy(irc, msg)
|
||||||
if msg.command == 'PRIVMSG':
|
if msg.command == 'PRIVMSG':
|
||||||
if self.noIgnore or not ircdb.checkIgnored(msg.prefix,msg.args[0]):
|
if self.noIgnore or \
|
||||||
|
not ircutils.isUserHostmask(msg.prefix) or \ # Some services impl.
|
||||||
|
not ircdb.checkIgnored(msg.prefix,msg.args[0]):
|
||||||
self.__parent.__call__(irc, msg)
|
self.__parent.__call__(irc, msg)
|
||||||
else:
|
else:
|
||||||
self.__parent.__call__(irc, msg)
|
self.__parent.__call__(irc, msg)
|
||||||
|
Loading…
Reference in New Issue
Block a user