myreadingmanga next chapter fix. (#249)

This commit is contained in:
Carlos 2018-03-11 10:50:12 -04:00 committed by GitHub
parent 556384a506
commit f4220a5e40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -5,8 +5,8 @@ ext {
appName = 'Tachiyomi: MyReadingManga'
pkgNameSuffix = "all.myreadingmanga"
extClass = '.MyReadingMangaFactory'
extVersionCode = 1
extVersionSuffix = 0
extVersionCode = 2
extVersionSuffix = 1
libVersion = '1.2'
}

View File

@ -112,6 +112,8 @@ open class MyReadingManga(override val lang: String) : ParsedHttpSource() {
chapters.add(createChapter(it.text(), document.baseUri(), date))
}
}
chapters.reverse()
return chapters
}