[ReactNative] Allow JSON fragments on RCTJSONStringify

This commit is contained in:
Tadeu Zagallo
2015-05-06 05:44:48 -07:00
parent 88a83084e4
commit ea470408e2

View File

@@ -20,7 +20,7 @@
NSString *RCTJSONStringify(id jsonObject, NSError **error)
{
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:jsonObject options:0 error:error];
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:jsonObject options:(NSJSONWritingOptions)NSJSONReadingAllowFragments error:error];
return jsonData ? [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding] : nil;
}