We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0bdb09 commit 294dc18Copy full SHA for 294dc18
src/darwin/Framework/CHIP/MTRDevice.mm
@@ -3097,8 +3097,9 @@ - (void)_pruneClustersIn:(MTRDeviceDataValueDictionary)previousServerListValue
3097
3098
NSMutableSet<MTRClusterPath *> * clusterPathsToRemove = [[NSMutableSet alloc] init];
3099
for (MTRClusterPath * path in _persistedClusters) {
3100
- if ([path.endpoint isEqualToNumber:endpointID] && [toBeRemovedClusters containsObject:path.cluster])
+ if ([path.endpoint isEqualToNumber:endpointID] && [toBeRemovedClusters containsObject:path.cluster]) {
3101
[clusterPathsToRemove addObject:path];
3102
+ }
3103
}
3104
[self _removeClusters:clusterPathsToRemove doRemoveFromDataStore:YES];
3105
0 commit comments