1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

* fix anidb {sxe} format bugs

This commit is contained in:
Reinhard Pointner 2014-03-20 05:43:31 +00:00
parent 89c1744fd3
commit c745ea01a3

View File

@ -91,6 +91,10 @@ public class EpisodeMatcher extends Matcher<File, Object> {
}
private boolean isMultiEpisode(Episode[] episodes) {
// sanity check that there is valid episode data for at least two episodes
if (episodes.length < 2)
return false;
// check episode sequence integrity
Integer seqIndex = null;
for (Episode ep : episodes) {