From 73371b5571d3e884c8255cb832b51137784a126f Mon Sep 17 00:00:00 2001 From: jesopo Date: Wed, 6 May 2020 16:35:54 +0100 Subject: [PATCH] sent messages should mark channels 'active' --- modules/inactive_channels.py | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/inactive_channels.py b/modules/inactive_channels.py index 53430351..78f724c7 100644 --- a/modules/inactive_channels.py +++ b/modules/inactive_channels.py @@ -66,6 +66,7 @@ class Module(ModuleManager.BaseModule): channel.send_part("Channel inactive") self._del_timestamp(channel) + @utils.hook("send.message.channel") @utils.hook("received.message.channel") def channel_message(self, event): self._set_timestamp(event["channel"])