Fix bug that prevented new folders from appearing in the Feeds

This commit is contained in:
Maurice Parker 2019-09-01 10:29:30 -05:00
parent 397d75c6f6
commit 43fb7dff9f
1 changed files with 2 additions and 3 deletions

View File

@ -299,10 +299,9 @@ class AppCoordinator: NSObject, UndoableCommandRunner, UnreadCountProvider {
} }
@objc func containerChildrenDidChange(_ note: Notification) { @objc func containerChildrenDidChange(_ note: Notification) {
rebuildBackingStores()
if timelineFetcherContainsAnyPseudoFeed() || timelineFetcherContainsAnyFolder() { if timelineFetcherContainsAnyPseudoFeed() || timelineFetcherContainsAnyFolder() {
fetchAndReplaceArticlesAsync() { [weak self] in fetchAndReplaceArticlesAsync() {}
self?.rebuildBackingStores()
}
} }
} }