From 80facadd6780924f46016595435a2824906331de Mon Sep 17 00:00:00 2001 From: Seijo Cecilia Date: Sat, 7 Sep 2024 19:49:54 +0800 Subject: [PATCH] chore: fix prefer-const --- src/core/apis/msg.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {