* allow file.isEpisode() file filter expressions
This commit is contained in:
parent
fdd6c43862
commit
694c0ec049
|
@ -401,4 +401,8 @@ public class ScriptShellMethods {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static boolean isEpisode(File self) {
|
||||||
|
return MediaDetection.isEpisode(String.join("/", self.getParent(), self.getName()), true);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue