1
1
mirror of https://github.com/VKCOM/vk-ios-sdk.git synced 2024-09-17 10:17:08 +03:00

fix apiObject for enumeration with ignoredProperties

This commit is contained in:
Alexandr Chernov 2015-06-20 22:50:52 +03:00
parent 7689c980eb
commit b4b68c3f4a

View File

@ -195,7 +195,7 @@ static NSString *getPropertyName(objc_property_t prop) {
objc_property_t property = properties[i];
VKPropertyHelper *helper = [[VKPropertyHelper alloc] initWith:property];
if ([ignoredProperties containsObject:helper.propertyName])
return;
continue;
if (processBlock)
processBlock(helper, propertiesCount);
}