mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-07 19:49:23 +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
)
Signed-off-by: Daniel Folkinshteyn <nanotube@users.sourceforge.net>
This commit is contained in:
parent
23cca935cb
commit
0781ff339e
@ -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