aboutsummaryrefslogtreecommitdiff
path: root/modules/line_handler/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'modules/line_handler/__init__.py')
-rw-r--r--modules/line_handler/__init__.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/line_handler/__init__.py b/modules/line_handler/__init__.py
index 2b9891af..76aa8a3a 100644
--- a/modules/line_handler/__init__.py
+++ b/modules/line_handler/__init__.py
@@ -239,6 +239,10 @@ class Module(ModuleManager.BaseModule):
@utils.hook("raw.received.433", default_event=True)
def handle_433(self, event):
core.handle_433(event)
+ # nickname/channel is temporarily unavailable
+ @utils.hook("raw.received.437")
+ def handle_437(self, event):
+ core.handle_437(event)
# we need a registered nickname for this channel
@utils.hook("raw.received.477", default_event=True)