WP Mangastream - fix Readkomik browse (#4033)
This commit is contained in:
parent
bcb9520edd
commit
613ebc2aaf
|
@ -5,7 +5,7 @@ ext {
|
|||
extName = 'WP Mangstream (multiple sources)'
|
||||
pkgNameSuffix = 'all.wpmangastream'
|
||||
extClass = '.WPMangaStreamFactory'
|
||||
extVersionCode = 19
|
||||
extVersionCode = 20
|
||||
libVersion = '1.2'
|
||||
}
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue