From 26bfd61487805763a7979fc1c994852f6ee916ee Mon Sep 17 00:00:00 2001 From: jesopo Date: Mon, 1 Oct 2018 17:28:45 +0100 Subject: [PATCH] The correct msgid reply tag (at the moment) is '+draft/reply' --- modules/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)