WP Mangastream - fix Readkomik browse (#4033)

This commit is contained in:
Mike 2020-08-07 03:12:34 -04:00 committed by GitHub
parent bcb9520edd
commit 613ebc2aaf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View File

@ -5,7 +5,7 @@ ext {
extName = 'WP Mangstream (multiple sources)'
pkgNameSuffix = 'all.wpmangastream'
extClass = '.WPMangaStreamFactory'
extVersionCode = 19
extVersionCode = 20
libVersion = '1.2'
}

View File

@ -652,7 +652,10 @@ class Matakomik : WPMangaStream("Matakomik", "https://matakomik.com", "id") {
class KomikindoCo : WPMangaStream("Komikindo.co", "https://komikindo.co", "id")
class ReadKomik : WPMangaStream("Readkomik", "https://readkomik.com", "en")
class ReadKomik : WPMangaStream("Readkomik", "https://readkomik.com", "en") {
override fun popularMangaRequest(page: Int): Request = GET("$baseUrl/manga/?page=$page&order=popular", headers)
override fun latestUpdatesRequest(page: Int): Request = GET("$baseUrl/manga/?page=$page&order=update", headers)
}
class MangaP : WPMangaStream("MangaP", "https://mangap.me", "ar") {
override fun popularMangaRequest(page: Int): Request = GET("$baseUrl/manga/?page=$page&order=popular", headers)