You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mc_createObjectFromJSONDictionary crashes whenever var propertyClass is a subclass of RLMArray and var value is NSNull. There should be the same check that in the RLMObject case.
if (!value || [value isEqual:[NSNullnull]]) {
continue;
}
By the way, why testing (!value) in a if (value) condition block ? It seems kinda useless.
The text was updated successfully, but these errors were encountered:
mc_createObjectFromJSONDictionary crashes whenever var propertyClass is a subclass of RLMArray and var value is NSNull. There should be the same check that in the RLMObject case.
By the way, why testing (!value) in a if (value) condition block ? It seems kinda useless.
The text was updated successfully, but these errors were encountered: