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, 2 insertions, 2 deletions
diff --git a/modules/line_handler/__init__.py b/modules/line_handler/__init__.py
index fed529e9..2b9891af 100644
--- a/modules/line_handler/__init__.py
+++ b/modules/line_handler/__init__.py
@@ -226,9 +226,9 @@ class Module(ModuleManager.BaseModule):
core.handle_354(event)
# response to an empty mode command
- @utils.hook("raw.received.324", default_event=True)
+ @utils.hook("raw.received.324")
def handle_324(self, event):
- channel.handle_324(event)
+ channel.handle_324(self.events, event)
# channel creation unix timestamp
@utils.hook("raw.received.329", default_event=True)