Fix handling of pinned feed if home algo is disabled
This commit is contained in:
@@ -265,7 +265,12 @@ export function usePinnedFeedsInfos() {
|
|||||||
'reduced_onboarding_and_home_algo',
|
'reduced_onboarding_and_home_algo',
|
||||||
)
|
)
|
||||||
const pinnedUris = (preferences?.feeds?.pinned ?? []).filter(f => {
|
const pinnedUris = (preferences?.feeds?.pinned ?? []).filter(f => {
|
||||||
if (isHomeAlgoExperimentEnabled && hasSession && preferences?.homeAlgo) {
|
if (
|
||||||
|
isHomeAlgoExperimentEnabled &&
|
||||||
|
hasSession &&
|
||||||
|
preferences?.homeAlgo &&
|
||||||
|
preferences?.homeAlgo?.enabled
|
||||||
|
) {
|
||||||
// remove duplicate feed
|
// remove duplicate feed
|
||||||
return f !== preferences?.homeAlgo.uri
|
return f !== preferences?.homeAlgo.uri
|
||||||
}
|
}
|
||||||
@@ -332,6 +337,7 @@ export function usePinnedFeedsInfos() {
|
|||||||
result.push(resolved.get(pinnedUri))
|
result.push(resolved.get(pinnedUri))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
console.log(result)
|
||||||
return result
|
return result
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user