1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

Fix copy & paste programming

This commit is contained in:
Reinhard Pointner 2019-05-18 20:27:32 +07:00
parent 62a4b9af8f
commit 45e491e962

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));
}