LIBOMV-879: Fixed deserialization of nested arrays
git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@3463 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
@@ -496,7 +496,7 @@ namespace LitJson
|
||||
|
||||
while (true) {
|
||||
IJsonWrapper item = ReadValue (factory, reader);
|
||||
if (reader.Token == JsonToken.ArrayEnd)
|
||||
if (item == null && reader.Token == JsonToken.ArrayEnd)
|
||||
break;
|
||||
|
||||
((IList) instance).Add (item);
|
||||
|
||||
Reference in New Issue
Block a user