Fix bug that prevented new folders from appearing in the Feeds
This commit is contained in:
parent
397d75c6f6
commit
43fb7dff9f
|
@ -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()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue