aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/github.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/github.py b/modules/github.py
index 11a828e3..9925bc6a 100644
--- a/modules/github.py
+++ b/modules/github.py
@@ -48,7 +48,7 @@ class Module(ModuleManager.BaseModule):
enumerate(hooks))[::-1]:
if full_name in hooked_repos:
server = self.bot.get_server(server_id)
- if server and server.has_channel(channel_name):
+ if server and channel_name in server.channels:
channel = server.get_channel(channel_name)
github_events = channel.get_setting("github-events",
DEFAULT_EVENTS)