mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-23 11:12:47 +01:00
Services: Don't filter outgoing JOIN messages on disabled networks
Signed-off-by: James Vega <jamessan@users.sourceforge.net>
(cherry picked from commit acffde68ab
)
This commit is contained in:
parent
3f63917dc2
commit
0ff414b993
@ -71,7 +71,7 @@ class Services(callbacks.Plugin):
|
||||
return False
|
||||
|
||||
def outFilter(self, irc, msg):
|
||||
if msg.command == 'JOIN':
|
||||
if msg.command == 'JOIN' and not self.disabled(irc):
|
||||
if not self.identified:
|
||||
if self.registryValue('noJoinsUntilIdentified'):
|
||||
self.log.info('Holding JOIN to %s until identified.',
|
||||
|
Loading…
Reference in New Issue
Block a user