|
@@ -286,7 +286,9 @@ namespace InvercargillJson {
|
|
|
else if(node.get_value_type().is_a(typeof(int64))) {
|
|
else if(node.get_value_type().is_a(typeof(int64))) {
|
|
|
result = node.get_int().to_string();
|
|
result = node.get_int().to_string();
|
|
|
}
|
|
}
|
|
|
- result = node.get_string();
|
|
|
|
|
|
|
+ else {
|
|
|
|
|
+ result = node.get_string();
|
|
|
|
|
+ }
|
|
|
return true;
|
|
return true;
|
|
|
}
|
|
}
|
|
|
if(typeof(T).is_a(typeof(DateTime))) {
|
|
if(typeof(T).is_a(typeof(DateTime))) {
|