From bf786705b8a4c58c23d54b63acb0a72b5a4c796a Mon Sep 17 00:00:00 2001 From: Griatch Date: Fri, 18 Oct 2013 20:34:09 +0200 Subject: [PATCH] Fixed a missing return statement that caused non-superusers to not join default channels. --- src/comms/comms.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/comms/comms.py b/src/comms/comms.py index 179e08d1fb..4ac1ad6ffc 100644 --- a/src/comms/comms.py +++ b/src/comms/comms.py @@ -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): """