Don't remove items from Feeds list when batch update is performed. Issue #1879

This commit is contained in:
Maurice Parker 2020-03-11 15:19:55 -06:00
parent 9007ed4b06
commit 38981d01bd
1 changed files with 1 additions and 2 deletions

View File

@ -465,7 +465,7 @@ class SceneCoordinator: NSObject, UndoableCommandRunner, UnreadCountProvider {
} }
@objc func batchUpdateDidPerform(_ notification: Notification) { @objc func batchUpdateDidPerform(_ notification: Notification) {
rebuildBackingStores() rebuildBackingStoresWithMerge()
} }
@objc func displayNameDidChange(_ note: Notification) { @objc func displayNameDidChange(_ note: Notification) {
@ -1374,7 +1374,6 @@ private extension SceneCoordinator {
@objc func rebuildBackingStoresWithMerge() { @objc func rebuildBackingStoresWithMerge() {
addShadowTableToFilterExceptions() addShadowTableToFilterExceptions()
rebuildBackingStores() rebuildBackingStores()
treeControllerDelegate.resetFilterExceptions()
} }
func rebuildShadowTable() { func rebuildShadowTable() {