* Fixed JSON serialization for null/undefined values

* Added MappingType.Spherical and MappingType.Cylindrical enum values

git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@3361 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2010-06-05 14:12:24 +00:00
parent 2c234d9c14
commit 64f990fa38
2 changed files with 6 additions and 2 deletions

View File

@@ -123,7 +123,7 @@ namespace OpenMetaverse.StructuredData
return jsonmap;
case OSDType.Unknown:
default:
return new JsonData();
return new JsonData(null);
}
}