|
@@ -1547,7 +1547,7 @@ static id ModelToJSONObjectRecursive(NSObject *model) {
|
|
id that = [model valueForKey:NSStringFromSelector(propertyMeta->_getter)];
|
|
id that = [model valueForKey:NSStringFromSelector(propertyMeta->_getter)];
|
|
if (this == that) continue;
|
|
if (this == that) continue;
|
|
if (this == nil || that == nil) return NO;
|
|
if (this == nil || that == nil) return NO;
|
|
- if ([this isEqual:that]) continue;
|
|
|
|
|
|
+ if (![this isEqual:that]) return NO;
|
|
}
|
|
}
|
|
return YES;
|
|
return YES;
|
|
}
|
|
}
|