diff --git a/VAR.Json/JsonParser.cs b/VAR.Json/JsonParser.cs index cebbb47..6aa4d30 100644 --- a/VAR.Json/JsonParser.cs +++ b/VAR.Json/JsonParser.cs @@ -115,7 +115,12 @@ namespace VAR.Json } if (bestMatch != null) { - return ConvertToType(obj, bestMatch); + try + { + object newObj = ConvertToType(obj, bestMatch); + return newObj; + } + catch (Exception) { } /* Nom Nom */ } return obj; }