diff options
| author | 2019-07-04 10:44:52 +0100 | |
|---|---|---|
| committer | 2019-07-04 10:44:52 +0100 | |
| commit | 689f9774679a9ff414cf6b00e70e0f4c195cab05 (patch) | |
| tree | 0adde1bf96af4adfdb987e279b88b37fdea8efd6 /modules/line_handler/__init__.py | |
| parent | threading.Lock() around any access to _write_buffer (diff) | |
| signature | ||
treat 437 the same as 433 (nickname already in use)
Diffstat (limited to 'modules/line_handler/__init__.py')
| -rw-r--r-- | modules/line_handler/__init__.py | 4 |
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) |
