oops, add cursor

This commit is contained in:
Samuel Newman
2026-04-24 16:08:11 +03:00
parent 189be5bf2f
commit 9cdfcd207b
+2 -1
View File
@@ -675,12 +675,13 @@ export class Convo {
// use `useListConvoMembersQuery`
// we shouldn't also block loading off of this - the UI should be resilient
async fetchMemberList() {
let cursor
let cursor: string | undefined
do {
const result = await networkRetry(2, () => {
return this.agent.chat.bsky.convo.getConvoMembers({
convoId: this.convoId,
limit: 50,
cursor,
})
})
cursor = result.data.cursor