mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-02-17 06:00:42 +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 acffde68abb28606371634d7f52fe8991e3cbf9e)
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…
x
Reference in New Issue
Block a user