Merge pull request #151 from icewind1991/chapter-recognition-fallback

Fix infinite loop when no chapter number is parsed
This commit is contained in:
inorichi 2016-02-16 20:41:34 +01:00
commit ff46c61f63
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);
}
}