FMReader - remove TruyenTranhLH (#2921)

FMReader - remove TruyenTranhLH
This commit is contained in:
Mike 2020-04-29 07:59:18 -04:00 committed by GitHub
parent b398c1dc34
commit 044bd2c096
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 6 deletions

View File

@ -5,7 +5,7 @@ ext {
appName = 'Tachiyomi: FMReader (multiple aggregators)' appName = 'Tachiyomi: FMReader (multiple aggregators)'
pkgNameSuffix = 'all.fmreader' pkgNameSuffix = 'all.fmreader'
extClass = '.FMReaderFactory' extClass = '.FMReaderFactory'
extVersionCode = 11 extVersionCode = 12
libVersion = '1.2' libVersion = '1.2'
} }

View File

@ -33,7 +33,6 @@ class FMReaderFactory : SourceFactory {
HanaScan(), HanaScan(),
RawLH(), RawLH(),
Manhwa18(), Manhwa18(),
TruyenTranhLH(),
EighteenLHPlus(), EighteenLHPlus(),
MangaTR(), MangaTR(),
Comicastle(), Comicastle(),
@ -119,11 +118,8 @@ class Manhwa18 : FMReader("Manhwa18", "https://manhwa18.com", "en") {
override fun getGenreList() = getAdultGenreList() override fun getGenreList() = getAdultGenreList()
} }
class TruyenTranhLH : FMReader("TruyenTranhLH", "https://truyentranhlh.net", "vi") {
override val requestPath = "danh-sach-truyen.html"
}
class EighteenLHPlus : FMReader("18LHPlus", "https://18lhplus.com", "en") { class EighteenLHPlus : FMReader("18LHPlus", "https://18lhplus.com", "en") {
override fun popularMangaNextPageSelector() = "div.col-lg-8 div.btn-group:first-of-type"
override fun getGenreList() = getAdultGenreList() override fun getGenreList() = getAdultGenreList()
} }