chore: fix prefer-const

This commit is contained in:
Seijo Cecilia 2024-09-07 19:49:54 +08:00
parent ba097dad23
commit 80facadd67

View File

@ -113,7 +113,7 @@ export class NTQQMsgApi {
return await this.context.session.getMsgService().getMsgsBySeqList(peer, msgSeqList); return await this.context.session.getMsgService().getMsgsBySeqList(peer, msgSeqList);
} }
async getMsgBySeqExFirstMsg(peer: Peer, rootMsgId: string, replyMsgId: string) { 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); console.log(reply);
} }
async getMsgExBySeq(peer: Peer, msgSeq: string) { async getMsgExBySeq(peer: Peer, msgSeq: string) {