slight change to url (#5345)
This commit is contained in:
parent
e4f3e5053f
commit
b4666b1d0d
|
@ -5,7 +5,7 @@ ext {
|
|||
extName = 'MangaDex'
|
||||
pkgNameSuffix = 'all.mangadex'
|
||||
extClass = '.MangaDexFactory'
|
||||
extVersionCode = 99
|
||||
extVersionCode = 100
|
||||
libVersion = '1.2'
|
||||
containsNsfw = true
|
||||
}
|
||||
|
|
|
@ -413,7 +413,7 @@ abstract class MangaDex(
|
|||
}
|
||||
|
||||
private fun searchMangaByIdRequest(id: String): Request {
|
||||
return GET(API_URL + API_MANGA + id, headers, CacheControl.FORCE_NETWORK)
|
||||
return GET(API_URL + API_MANGA + id + API_MANGA_INCLUDE_CHAPTERS, headers, CacheControl.FORCE_NETWORK)
|
||||
}
|
||||
|
||||
private fun getMangaId(url: String): String {
|
||||
|
|
Loading…
Reference in New Issue