diff options
| author | 2019-07-03 08:13:28 +0100 | |
|---|---|---|
| committer | 2019-07-03 08:13:28 +0100 | |
| commit | 76ab7935a04489017b6bb242593989621f1cfc30 (patch) | |
| tree | dbdae4b55d22cd6fbe7a31083f17328439a34e31 /modules/line_handler/__init__.py | |
| parent | Show an error (instead of throwing) when !define gets a 404 (diff) | |
| signature | ||
return parsed modes from IRCChannel.parse_modes, pass through mode events
Diffstat (limited to 'modules/line_handler/__init__.py')
| -rw-r--r-- | modules/line_handler/__init__.py | 4 |
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) |
