This commit is contained in:
Anthony Calosa
2022-07-12 14:55:59 +08:00
parent 7874178f8b
commit 1710447322

View File

@@ -176,6 +176,7 @@ public final class ImageKeys {
//setlookup //setlookup
if (hasSetLookup(filename)) { if (hasSetLookup(filename)) {
toFind.add(filename); toFind.add(filename);
try {
ThreadUtil.getServicePool().submit(() -> { ThreadUtil.getServicePool().submit(() -> {
File f = setLookUpFile(filename, fullborderFile); File f = setLookUpFile(filename, fullborderFile);
if (f != null) if (f != null)
@@ -184,6 +185,9 @@ public final class ImageKeys {
missingCards.add(filename); missingCards.add(filename);
toFind.remove(filename); toFind.remove(filename);
}); });
} catch (Exception e) {
toFind.remove(filename);
}
} }
} }
//if an image, like phenomenon or planes is missing .full in their filenames but you have an existing images that have .full/.fullborder //if an image, like phenomenon or planes is missing .full in their filenames but you have an existing images that have .full/.fullborder