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:
parent
34817628e1
commit
8a4a8af61c
3 changed files with 7 additions and 4 deletions
|
@ -98,7 +98,7 @@ export class MergeFeedAPI implements FeedAPI {
|
|||
}
|
||||
|
||||
return {
|
||||
cursor: posts.length ? String(this.itemCursor) : undefined,
|
||||
cursor: String(this.itemCursor),
|
||||
feed: posts,
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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')],
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue