Services: Don't filter outgoing JOIN messages on disabled networks

Signed-off-by: James Vega <jamessan@users.sourceforge.net>
This commit is contained in:
James Vega 2010-06-27 19:48:36 -04:00
parent 0c62204809
commit acffde68ab
1 changed files with 1 additions and 1 deletions

View File

@ -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.',