mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-16 06:15:02 -05:00
* make sure we don't crash just because the clutter file filter isn't available (e.g if website is down)
This commit is contained in:
parent
a30717fa34
commit
abeb60dfb1
@ -83,9 +83,14 @@ public class MediaDetection {
|
|||||||
return diskFolder;
|
return diskFolder;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static FileFilter getClutterFileFilter() throws IOException {
|
public static FileFilter getClutterFileFilter() {
|
||||||
if (clutterFile == null) {
|
if (clutterFile == null) {
|
||||||
clutterFile = releaseInfo.getClutterFileFilter();
|
try {
|
||||||
|
clutterFile = releaseInfo.getClutterFileFilter();
|
||||||
|
} catch (IOException e) {
|
||||||
|
Logger.getLogger(MediaDetection.class.getClass().getName()).log(Level.WARNING, "Unable to access clutter file filter: " + e.getMessage(), e);
|
||||||
|
return ((File f) -> false);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return clutterFile;
|
return clutterFile;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user