Fix error getting through by primary feed sort (#3562)

This commit is contained in:
Paul Frazee
2024-04-15 20:41:44 -07:00
committed by GitHub
parent f265d65a18
commit 68d002a966
+3 -9
View File
@@ -107,21 +107,15 @@ async function whenFollowsIndexed(
} }
/** /**
* Kinda hacky, but we want For Your or Discover to appear as the first pinned * Kinda hacky, but we want Discover to appear as the first pinned
* feed after Following * feed after Following
*/ */
export function sortPrimaryAlgorithmFeeds(uris: string[]) { export function sortPrimaryAlgorithmFeeds(uris: string[]) {
return uris.sort((a, b) => { return uris.sort((a, b) => {
if (a === PRIMARY_FEEDS[0].uri) { if (a === PRIMARY_FEEDS[0]?.uri) {
return -1 return -1
} }
if (b === PRIMARY_FEEDS[0].uri) { if (b === PRIMARY_FEEDS[0]?.uri) {
return 1
}
if (a === PRIMARY_FEEDS[1].uri) {
return -1
}
if (b === PRIMARY_FEEDS[1].uri) {
return 1 return 1
} }
return a.localeCompare(b) return a.localeCompare(b)