fix: get folder feed ids
This commit is contained in:
parent
524ad05002
commit
8a4edf9cec
|
|
@ -22,7 +22,9 @@ export const folderFeedsByFeedIdSelector =
|
|||
const subscription = state.data[feedId]!
|
||||
if (
|
||||
subscription.view === view &&
|
||||
(subscription.category === folderName || getDefaultCategory(subscription) === folderName)
|
||||
(subscription.category
|
||||
? subscription.category === folderName
|
||||
: getDefaultCategory(subscription) === folderName)
|
||||
) {
|
||||
feedIds.push(feedId)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue