diff --git a/Modules/Sources/Yosemite/Tools/ResultsController.swift b/Modules/Sources/Yosemite/Tools/ResultsController.swift index cc29c2f9841..cb6c5d77c64 100644 --- a/Modules/Sources/Yosemite/Tools/ResultsController.swift +++ b/Modules/Sources/Yosemite/Tools/ResultsController.swift @@ -234,7 +234,6 @@ public class GenericResultsController { private func refreshFetchedObjects(predicate: NSPredicate?) { controller.fetchRequest.predicate = predicate try? controller.performFetch() - onDidChangeContent?() } /// Refreshes all of the Fetched Objects, so that the new sort descriptors are applied. @@ -242,7 +241,6 @@ public class GenericResultsController { private func refreshFetchedObjects(sortDescriptors: [NSSortDescriptor]?) { controller.fetchRequest.sortDescriptors = sortDescriptors try? controller.performFetch() - onDidChangeContent?() } /// Initializes the FetchedResultsController diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt index e365785f354..7d3a6cfdaf8 100644 --- a/RELEASE-NOTES.txt +++ b/RELEASE-NOTES.txt @@ -15,7 +15,6 @@ - [*] Fix product variation selection for order creation [https://github.com/woocommerce/woocommerce-ios/pull/16317] - [internal] Hide non-CIAB product types from filters [https://github.com/woocommerce/woocommerce-ios/pull/16354] - [Internal] Fix warning when displaying offline banner on My Store [https://github.com/woocommerce/woocommerce-ios/pull/16347] -- [Internal] Notify listeners immediately after updating predicates or sort descriptors for results controllers. [https://github.com/woocommerce/woocommerce-ios/pull/16350] 23.6 -----