diff --git a/mobile/apps/photos/lib/services/machine_learning/face_ml/feedback/cluster_feedback.dart b/mobile/apps/photos/lib/services/machine_learning/face_ml/feedback/cluster_feedback.dart index 2cefa84ac6..48beb60995 100644 --- a/mobile/apps/photos/lib/services/machine_learning/face_ml/feedback/cluster_feedback.dart +++ b/mobile/apps/photos/lib/services/machine_learning/face_ml/feedback/cluster_feedback.dart @@ -330,6 +330,10 @@ class ClusterFeedbackService { for (final person in personsMap.values) { final personID = person.remoteID; final personClusters = personToClusterIDs[personID] ?? {}; + if (person.data.isIgnored) { + personIdToOtherPersonClusterIDs[personID] = personClusters; + continue; + } int biggestClusterSize = 0; String biggestClusterID = ''; final Set otherPersonClusterIDs = {};