From 1a77abfc628cef5007e85f44bc047126667fe04f Mon Sep 17 00:00:00 2001 From: linyuchen Date: Wed, 14 Feb 2024 01:01:54 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=8F=91=E9=80=81=E5=9B=9E=E5=A4=8D?= =?UTF-8?q?=E6=B6=88=E6=81=AF=E5=A4=9A=E4=BA=86=E4=B8=AA`@`=E7=AC=A6?= =?UTF-8?q?=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/onebot11/actions/SendMsg.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/onebot11/actions/SendMsg.ts b/src/onebot11/actions/SendMsg.ts index 855fb4d..5f374f1 100644 --- a/src/onebot11/actions/SendMsg.ts +++ b/src/onebot11/actions/SendMsg.ts @@ -98,7 +98,7 @@ class SendMsg extends BaseAction { replyMsgId = replyMsgId.toString() const replyMsg = getHistoryMsgByShortId(replyMsgId) if (replyMsg) { - sendElements.push(SendMsgElementConstructor.reply(replyMsg.msgSeq, replyMsgId, "", "")) + sendElements.push(SendMsgElementConstructor.reply(replyMsg.msgSeq, replyMsg.msgId, replyMsg.senderUin, replyMsg.senderUin)) } } } break;