aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGravatar jesopo2019-06-21 10:47:39 +0100
committerGravatar jesopo2019-06-21 10:47:39 +0100
commit42f56a33095c8546c44fed373b3e873cf6956574 (patch)
treefdce4bf91cf8b0d6398de898ba0cf0985114c1eb /modules
parentremove echo-message considerations from line_handler/message.py (diff)
signature
Check our own (echoed) msgids
Diffstat (limited to 'modules')
-rw-r--r--modules/ircv3_msgid.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/ircv3_msgid.py b/modules/ircv3_msgid.py
index 520198d6..d5690286 100644
--- a/modules/ircv3_msgid.py
+++ b/modules/ircv3_msgid.py
@@ -9,8 +9,11 @@ class Module(ModuleManager.BaseModule):
channel.set_setting("last-msgid", msgid)
@utils.hook("received.message.channel")
+ @utils.hook("send.message.channel")
@utils.hook("received.notice.channel")
+ @utils.hook("send.notice.channel")
@utils.hook("received.tagmsg.channel")
+ @utils.hook("send.tagmsg.channel")
def on_channel(self, event):
self._on_channel(event["channel"], event["tags"])