WP Mangastream - more kiryuu page filtering (#3577)
This commit is contained in:
parent
9c60fbeb93
commit
82e8daf2a9
|
@ -5,7 +5,7 @@ ext {
|
|||
appName = 'Tachiyomi: WP Mangstream (multiple sources)'
|
||||
pkgNameSuffix = 'all.wpmangastream'
|
||||
extClass = '.WPMangaStreamFactory'
|
||||
extVersionCode = 15
|
||||
extVersionCode = 16
|
||||
libVersion = '1.2'
|
||||
}
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@ class SekteKomik : WPMangaStream("Sekte Komik (WP Manga Stream)", "https://sekte
|
|||
class Kiryuu : WPMangaStream("Kiryuu (WP Manga Stream)", "https://kiryuu.co", "id") {
|
||||
override fun pageListParse(document: Document): List<Page> {
|
||||
return document.select("div#readerarea img").map { it.attr("abs:src") }
|
||||
.filterNot { it.contains("/.filerun") }
|
||||
.filterNot { it.substringAfterLast("/").contains(Regex("""(filerun|photothumb\.db)""")) }
|
||||
.mapIndexed { i, image -> Page(i, "", image) }
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue