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

Fix computeIf condition!!!!

This commit is contained in:
Reinhard Pointner 2016-03-09 16:02:31 +00:00
parent 7b7d6b36a8
commit 63fd9d77af

View File

@ -65,7 +65,7 @@ public class Cache {
Element element = null; Element element = null;
try { try {
element = cache.get(key); element = cache.get(key);
if (condition.test(element)) { if (!condition.test(element)) {
return getElementValue(element); return getElementValue(element);
} }
} catch (Exception e) { } catch (Exception e) {