diff options
| author | 2019-02-22 22:37:27 +0000 | |
|---|---|---|
| committer | 2019-02-22 22:37:27 +0000 | |
| commit | ed4643b15dae5e5e0e0677f4f8252057f2fff1b2 (patch) | |
| tree | 6158ac9355d0b3453f024b63a9eebc20112ae7d5 /modules/message_tracking.py | |
| parent | Add `target` typehint on IRCServer.send_tagmsg, add send_tagmsg to IRCChannel... (diff) | |
| signature | ||
Use new IRCChannel/IRCUser send_tagmsg in message_tracking.py
Diffstat (limited to 'modules/message_tracking.py')
| -rw-r--r-- | modules/message_tracking.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/message_tracking.py b/modules/message_tracking.py index 15dfe8d6..3f4ad88c 100644 --- a/modules/message_tracking.py +++ b/modules/message_tracking.py @@ -14,4 +14,4 @@ class Module(ModuleManager.BaseModule): target = event.get("channel", event["user"]) msgid = event["tags"][MSGID_TAG] tags = {DELIVERED_TAG: msgid, READ_TAG: msgid} - event["server"].send_tagmsg(target.name, tags) + target.send_tagmsg(tags) |
