mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-21 20:47:03 -05:00
Do not parse -2 chapter number
This commit is contained in:
parent
79ec4faddb
commit
12d6919421
1 changed files with 2 additions and 2 deletions
|
@ -35,7 +35,7 @@ object ChapterRecognition {
|
||||||
|
|
||||||
fun parseChapterNumber(chapter: Chapter, manga: Manga) {
|
fun parseChapterNumber(chapter: Chapter, manga: Manga) {
|
||||||
// If chapter number is known return.
|
// If chapter number is known return.
|
||||||
if (chapter.chapter_number != -1f)
|
if (chapter.chapter_number == -2f || chapter.chapter_number > -1f)
|
||||||
return
|
return
|
||||||
|
|
||||||
// Get chapter title with lower case
|
// Get chapter title with lower case
|
||||||
|
|
Loading…
Reference in a new issue