aboutsummaryrefslogtreecommitdiff
path: root/modules/commands.py
diff options
context:
space:
mode:
authorGravatar jesopo2018-10-01 17:28:45 +0100
committerGravatar jesopo2018-10-01 17:28:45 +0100
commit26bfd61487805763a7979fc1c994852f6ee916ee (patch)
tree552a72dd2c0eade1efab57d752cfacbbe2ff440f /modules/commands.py
parentBetter support for msgtags with PRIVMSGs; put functionality in to (diff)
signature
The correct msgid reply tag (at the moment) is '+draft/reply'
Diffstat (limited to 'modules/commands.py')
-rw-r--r--modules/commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands.py b/modules/commands.py
index 9c217920..c29ba006 100644
--- a/modules/commands.py
+++ b/modules/commands.py
@@ -35,7 +35,7 @@ class Out(object):
tags = {}
if self._msgid:
- tags["reply"] = self._msgid
+ tags["+draft/reply"] = self._msgid
self.target.send_message(text,
prefix=Utils.FONT_RESET + "[%s] " % self.prefix(), tags=tags)