This commit is contained in:
crschnick
2025-01-26 12:00:01 +00:00
parent f4f6367eb8
commit 477db6bc8f

View File

@@ -30,6 +30,10 @@ public class SystemIconCache {
}
public static void refreshBuilt() throws IOException {
if (!Files.exists(DIRECTORY)) {
return;
}
try (var stream = Files.walk(DIRECTORY)) {
built = stream.findAny().isPresent();
}