Fix which feeds get removed from the root folder during sync

This commit is contained in:
Maurice Parker
2020-10-31 13:35:01 -05:00
parent 2d2814e1db
commit 51d74eaf45

View File

@@ -745,7 +745,7 @@ private extension ReaderAPIAccountDelegate {
}
let taggedFeedIDs = Set(subscriptions.map { String($0.feedID) })
let taggedFeedIDs = Set(subscriptions.filter({ !$0.categories.isEmpty }).map { String($0.feedID) })
// Remove all feeds from the account container that have a tag
for feed in account.topLevelWebFeeds {