feat: support for at message segment specifying name

This commit is contained in:
idranme
2024-08-09 18:02:52 +08:00
parent b02cd3af00
commit be1b9c21c1
6 changed files with 21 additions and 18 deletions

View File

@@ -358,8 +358,9 @@ export class NTQQMsgApi {
})
})
}
static async getMsgsBySeqAndCount(peer: Peer, seq: string, count: number, desc: boolean, z: boolean) {
const session = getSession()
return await session?.getMsgService().getMsgsBySeqAndCount(peer, seq, count, desc, z);
return await session?.getMsgService().getMsgsBySeqAndCount(peer, seq, count, desc, z)!
}
}