diff --git a/src/core/apis/msg.ts b/src/core/apis/msg.ts index a2d5cf56..e688ddcf 100644 --- a/src/core/apis/msg.ts +++ b/src/core/apis/msg.ts @@ -113,7 +113,7 @@ export class NTQQMsgApi { return await this.context.session.getMsgService().getMsgsBySeqList(peer, msgSeqList); } async getMsgBySeqExFirstMsg(peer: Peer, rootMsgId: string, replyMsgId: string) { - let reply = await this.context.session.getMsgService().getSourceOfReplyMsgV2(peer, rootMsgId, replyMsgId); + const reply = await this.context.session.getMsgService().getSourceOfReplyMsgV2(peer, rootMsgId, replyMsgId); console.log(reply); } async getMsgExBySeq(peer: Peer, msgSeq: string) {