From bc737c20c949921b0f8cd16a814dd06b24ea8131 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Fri, 13 Feb 2026 15:45:08 +0000 Subject: [PATCH] Implement support for the ratified +reply tag. --- src/users.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/users.cpp b/src/users.cpp index cfe9d5f1d..3fd744c98 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -351,9 +351,10 @@ void User::SendMessage(BotInfo *source, const Anope::string &msg) void User::SendMessage(CommandSource &source, const Anope::string &msg) { + // TODO: remove support for the draft tag when other software catches up. Anope::map tags; if (!source.msgid.empty()) - tags["+draft/reply"] = source.msgid; + tags["+draft/reply"] = tags["+reply"] = source.msgid; SendMessageInternal(*source.service, this, msg, tags); }