File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -258,11 +258,11 @@ - (id)unserializedRepresentationOfDatabaseValue:(id)databaseValue forPropertyNam
258258 return [databaseValue isKindOfClass: NSDate .class] ? databaseValue : [NSDate dateWithTimeIntervalSince1970: [databaseValue doubleValue ]];
259259 } else if (propertyClass == NSDictionary .class ) {
260260 if ([databaseValue isKindOfClass: NSDictionary .class]) return databaseValue;
261- NSDictionary *dict = [NSPropertyListSerialization propertyListWithData: databaseValue options: kCFPropertyListImmutable format: NULL error: NULL ];
261+ NSDictionary *dict = [NSPropertyListSerialization propertyListWithData: databaseValue options: NSPropertyListImmutable format: NULL error: NULL ];
262262 return dict && [dict isKindOfClass: NSDictionary .class] ? dict : @{};
263263 } else if (propertyClass == NSArray .class ) {
264264 if ([databaseValue isKindOfClass: NSArray .class]) return databaseValue;
265- NSArray *array = [NSPropertyListSerialization propertyListWithData: databaseValue options: kCFPropertyListImmutable format: NULL error: NULL ];
265+ NSArray *array = [NSPropertyListSerialization propertyListWithData: databaseValue options: NSPropertyListImmutable format: NULL error: NULL ];
266266 return array && [array isKindOfClass: NSArray .class] ? array : @[];
267267 } else if (propertyClass == NSDecimalNumber .class ) {
268268 return [databaseValue isKindOfClass: NSDecimalNumber .class] ? databaseValue : [NSDecimalNumber decimalNumberWithDecimal: [databaseValue decimalValue ]];
You can’t perform that action at this time.
0 commit comments