File tree Expand file tree Collapse file tree 3 files changed +2
-2
lines changed
SHModelObject.xcworkspace/xcuserdata/shan.haq.xcuserdatad
SHModelObject/SHModelObject Expand file tree Collapse file tree 3 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -409,7 +409,7 @@ - (void)serializeValue:(id)value withKey:(id)key {
409
409
for (id item in value) {
410
410
// item should be a dictionary
411
411
if ([item isKindOfClass: [NSDictionary class ]]) {
412
- id itemObject = [objectClass objectWithDictionary: item];
412
+ id itemObject = [objectClass objectWithDictionary: item mappings: _mappings ];
413
413
if (itemObject) {
414
414
[valueArray addObject: itemObject];
415
415
}
Original file line number Diff line number Diff line change @@ -417,7 +417,7 @@ - (void)serializeValue:(id)value withKey:(id)key {
417
417
for (id item in value) {
418
418
// item should be a dictionary
419
419
if ([item isKindOfClass: [NSDictionary class ]]) {
420
- id itemObject = [objectClass objectWithDictionary: item];
420
+ id itemObject = [objectClass objectWithDictionary: item mappings: _mappings ];
421
421
if (itemObject) {
422
422
if ([realmArray respondsToSelector: @selector (addObject: )]) {
423
423
[realmArray addObject: itemObject];
You can’t perform that action at this time.
0 commit comments