Skip to content

Commit f7029db

Browse files
committed
[Darwin] MTRDevice isCachePrimed parts list check fix
1 parent 4601714 commit f7029db

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

src/darwin/Framework/CHIP/MTRDevice.mm

+8-3
Original file line numberDiff line numberDiff line change
@@ -2208,14 +2208,19 @@ - (BOOL)_isCachePrimedWithInitialConfigurationData
22082208
}
22092209

22102210
// Check if we have cached descriptor clusters for each listed endpoint
2211-
for (NSDictionary * endpointDataValue in partsList) {
2211+
for (NSDictionary * endpointDictionary in partsList) {
2212+
NSDictionary * endpointDataValue = endpointDictionary[MTRDataKey];
2213+
if (![endpointDataValue isKindOfClass:[NSDictionary class]]) {
2214+
MTR_LOG_ERROR("%@ unexpected parts list dictionary %@ data value class %@", self, endpointDictionary, [endpointDataValue class]);
2215+
continue;
2216+
}
22122217
if (![MTRUnsignedIntegerValueType isEqual:endpointDataValue[MTRTypeKey]]) {
2213-
MTR_LOG_ERROR("%@ unexpected type for parts list item %@", self, endpointDataValue);
2218+
MTR_LOG_ERROR("%@ unexpected parts list data value %@ item type %@", self, endpointDataValue, endpointDataValue[MTRTypeKey]);
22142219
continue;
22152220
}
22162221
NSNumber * endpoint = endpointDataValue[MTRValueKey];
22172222
if (![endpoint isKindOfClass:[NSNumber class]]) {
2218-
MTR_LOG_ERROR("%@ unexpected type for parts list item %@", self, endpointDataValue);
2223+
MTR_LOG_ERROR("%@ unexpected parts list item value class %@", self, [endpoint class]);
22192224
continue;
22202225
}
22212226
NSDictionary * descriptorDeviceTypeListDataValue = _readCache[[MTRAttributePath attributePathWithEndpointID:endpoint clusterID:@(MTRClusterIDTypeDescriptorID) attributeID:@(MTRAttributeIDTypeClusterDescriptorAttributeDeviceTypeListID)]];

0 commit comments

Comments
 (0)