mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-04 15:14:49 +00:00
Issue #383 fixed Cache viewer when cache directory of Firefox does not exist
This commit is contained in:
@@ -108,6 +108,9 @@ public class FirefoxCache implements CacheImplementation {
|
||||
if (profileDir != null) {
|
||||
cacheDir = new File(profileDir, "Cache");
|
||||
}
|
||||
if(cacheDir == null){
|
||||
return null;
|
||||
}
|
||||
if(!cacheDir.exists()){
|
||||
return null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user