From 54c6621f5e2e84c4c064c7c66d46833b5fee89ed Mon Sep 17 00:00:00 2001 From: RafaelKayumov Date: Wed, 3 Dec 2025 01:06:33 +0300 Subject: [PATCH 1/2] Revert "Notify listeners of changes when updating predicate and sort descriptors" This reverts commit 9b6b6daf456bb00756ea77d3e7c9ac3563eb295f. --- Modules/Sources/Yosemite/Tools/ResultsController.swift | 2 -- 1 file changed, 2 deletions(-) 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 From b4c9f1fc1e99d7ebe89b6dac65ca58655c9292f8 Mon Sep 17 00:00:00 2001 From: RafaelKayumov Date: Wed, 3 Dec 2025 01:07:56 +0300 Subject: [PATCH 2/2] Revert release notes for listeners notifying mention --- RELEASE-NOTES.txt | 1 - 1 file changed, 1 deletion(-) 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 -----