diff options
| author | 2018-10-01 17:28:45 +0100 | |
|---|---|---|
| committer | 2018-10-01 17:28:45 +0100 | |
| commit | 26bfd61487805763a7979fc1c994852f6ee916ee (patch) | |
| tree | 552a72dd2c0eade1efab57d752cfacbbe2ff440f | |
| parent | Better support for msgtags with PRIVMSGs; put functionality in to (diff) | |
| signature | ||
The correct msgid reply tag (at the moment) is '+draft/reply'
| -rw-r--r-- | modules/commands.py | 2 |
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) |
