Fixed a missing return statement that caused non-superusers to not join default channels.

This commit is contained in:
Griatch 2013-10-18 20:34:09 +02:00
parent 910fa612c6
commit bf786705b8

View file

@ -115,6 +115,7 @@ class Comm(TypeClass):
Run right before a channel is joined. If this returns a false value,
channel joining is aborted.
"""
return True
def post_join_channel(self, joiner):
"""