Fix copy & paste programming

This commit is contained in:
Reinhard Pointner 2019-05-18 20:27:32 +07:00
parent 62a4b9af8f
commit 45e491e962
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ public class JsonUtilities {
String value = getString(node, key);
if (value != null) {
try {
return converter.apply(getString(node, key));
return converter.apply(value);
} catch (Exception e) {
debug.warning(format("Bad %s value: %s => %s", key, value, e));
}