mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-02 08:25:02 -04:00
Refactor
This commit is contained in:
parent
b576216ffc
commit
37bf803c86
@ -120,10 +120,11 @@ public class MediaDetection {
|
||||
|
||||
public static boolean isEpisode(File file, boolean strict) {
|
||||
Object metaInfo = xattr.getMetaInfo(file);
|
||||
if (metaInfo != null) {
|
||||
return metaInfo instanceof Episode;
|
||||
if (metaInfo instanceof Episode) {
|
||||
return true;
|
||||
}
|
||||
|
||||
// require a good S00E00 match
|
||||
return MediaDetection.isEpisode(String.join("/", file.getParent(), file.getName()), strict);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user