New user home feed fixes (#2421)

* Readd discover to default feeds for new users

* Fallback just to discover in home when mergefeed is disabled

* Always provide a cursor with mergefeed (no 'end of feed' condition)
This commit is contained in:
Paul Frazee 2024-01-04 17:34:10 -08:00 committed by GitHub
parent 34817628e1
commit 8a4a8af61c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 4 deletions

View file

@ -98,7 +98,7 @@ export class MergeFeedAPI implements FeedAPI {
}
return {
cursor: posts.length ? String(this.itemCursor) : undefined,
cursor: String(this.itemCursor),
feed: posts,
}
}

View file

@ -117,8 +117,8 @@ export async function DEFAULT_FEEDS(
} else {
// production
return {
pinned: [],
saved: [],
pinned: [PROD_DEFAULT_FEED('whats-hot')],
saved: [PROD_DEFAULT_FEED('whats-hot')],
}
}
}