Madara - add Plot Twist No Fansub (#1913)

Madara - add Plot Twist No Fansub
This commit is contained in:
Mike 2019-12-25 16:58:38 -05:00 committed by arkon
parent 6a703ead9b
commit 9df8e25b0e
2 changed files with 7 additions and 2 deletions

View File

@ -5,7 +5,7 @@ ext {
appName = 'Tachiyomi: Madara (multiple sources)'
pkgNameSuffix = "all.madara"
extClass = '.MadaraFactory'
extVersionCode = 36
extVersionCode = 37
libVersion = '1.2'
}

View File

@ -61,7 +61,8 @@ class MadaraFactory : SourceFactory {
HunterFansub(),
MangaArabTeam(),
NightComic(),
Toonily()
Toonily(),
PlotTwistScan()
)
}
@ -388,3 +389,7 @@ class NightComic : Madara("Night Comic", "http://www.nightcomic.com", "en")
class Toonily : Madara("Toonily", "https://toonily.com", "en")
class PlotTwistScan : Madara("Plot Twist No Fansub", "https://www.plotwistscan.com", "es") {
override fun chapterListParse(response: Response): List<SChapter> = super.chapterListParse(response).asReversed()
}