Merge pull request #181 from dhilus/master

YAJL serialization option modified so NSURL properties are serialized as String.
This commit is contained in:
Blake Watters
2011-06-30 05:18:13 -07:00
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@
}
- (NSString*)stringFromObject:(id)object error:(NSError **)error {
return [object yajl_JSONString];
return [object yajl_JSONStringWithOptions:YAJLGenOptionsIncludeUnsupportedTypes indentString:@" "];
}
@end