fix deleted messages breaking pagination

This commit is contained in:
Samuel Newman
2026-06-16 17:20:17 +03:00
parent 7d78eda9fd
commit 7032436202
+6 -8
View File
@@ -782,6 +782,12 @@ export class Convo {
})
const {cursor, messages, relatedProfiles} = response.data
// Trust the cursor for pagination. We can't infer "no more pages" from a
// short page: the server pages by raw rows but strips deleted messages
// from the response, so a full page containing a deleted message (e.g.
// from a deleted account) comes back short *with* a valid cursor. Using a
// count heuristic here would stop history fetching early and hide
// messages. The tradeoff is one extra empty fetch at the true top.
this.oldestRev = cursor ?? null
if (relatedProfiles) {
@@ -791,14 +797,6 @@ export class Convo {
this.applyProfileShadows()
}
/*
* If the response contained fewer messages than the limit, we know
* there are no more pages, regardless of whether a cursor was returned.
*/
if (messages.length < (IS_NATIVE ? 30 : 60)) {
this.oldestRev = null
}
for (const message of messages) {
if (
ChatBskyConvoDefs.isMessageView(message) ||