Missing following handling

This commit is contained in:
Eric Bailey
2024-04-18 11:44:48 -05:00
parent a26c08f95e
commit 98658a313f
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -213,7 +213,7 @@ const HOME_FEED_STUB: FeedSourceInfo = {
isPrimaryAlgorithm: false,
type: 'feed',
displayName: 'Following',
uri: 'home',
uri: 'following',
route: {
href: '/',
name: 'Home',
+2
View File
@@ -36,6 +36,8 @@ export function DesktopFeeds() {
let feed: FeedDescriptor
if (uri === 'home') {
feed = 'home'
} else if (uri === 'following') {
feed = 'following'
} else if (uri.includes('app.bsky.feed.generator')) {
feed = `feedgen|${uri}`
} else if (uri.includes('app.bsky.graph.list')) {