WP Mangastream - more kiryuu page filtering (#3577)

This commit is contained in:
Mike 2020-06-19 18:26:27 -04:00 committed by GitHub
parent 9c60fbeb93
commit 82e8daf2a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ ext {
appName = 'Tachiyomi: WP Mangstream (multiple sources)'
pkgNameSuffix = 'all.wpmangastream'
extClass = '.WPMangaStreamFactory'
extVersionCode = 15
extVersionCode = 16
libVersion = '1.2'
}

View File

@ -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) }
}
}