Fix infinite loop when no chapter number is parsed

This commit is contained in:
Robin Appelman 2016-02-16 20:37:57 +01:00
parent 1e81f75377
commit 57b64a412e
2 changed files with 16 additions and 6 deletions

View File

@ -111,6 +111,8 @@ public class ChapterRecognition {
}
// Strip anything after "part xxx" and try that
matcher = pPart.matcher(name);
if (matcher.find()) {
name = pPart.matcher(name).replaceAll("$1");
dummyChapter.name = name;
parseChapterNumber(dummyChapter, manga);
@ -119,6 +121,7 @@ public class ChapterRecognition {
return;
}
}
}
/**
* x.a -> x.1, x.b -> x.2, etc

View File

@ -172,4 +172,11 @@ public class ChapterRecognitionTest {
ChapterRecognition.parseChapterNumber(c, randomManga);
assertThat(c.chapter_number).isEqualTo(027f);
}
@Test
public void testUnparsable() {
Chapter c = createChapter("Foo");
ChapterRecognition.parseChapterNumber(c, randomManga);
assertThat(c.chapter_number).isEqualTo(-1f);
}
}