mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 11:09:23 +01:00
Fixed problem with actions being relayed back to the original network
This commit is contained in:
parent
f32efbf2b2
commit
e3cf5753af
@ -162,8 +162,9 @@ class Relay(privmsgs.CapabilityCheckingPrivmsg):
|
||||
def outFilter(self, irc, msg):
|
||||
if msg.command == 'PRIVMSG':
|
||||
abbreviations = self.abbreviations.values()
|
||||
r = re.compile(r'<[^@]+@(?:%s)>' % '|'.join(abbreviations))
|
||||
if not r.match(msg.args[1]):
|
||||
rPrivmsg = re.compile(r'<[^@]+@(?:%s)>' % '|'.join(abbreviations))
|
||||
rAction = re.compile(r'* \w+/(?:%s) ' % '|'.join(abbreviations))
|
||||
if not (rPrivmsg.match(msg.args[1]) or rAction.match(msg.args[1])):
|
||||
channel = msg.args[0]
|
||||
abbreviation = self.abbreviations[irc]
|
||||
s = self._formatPrivmsg(irc.nick, abbreviation, msg)
|
||||
|
Loading…
Reference in New Issue
Block a user