slight change to url (#5345)

This commit is contained in:
Carlos 2021-01-07 08:09:48 -05:00 committed by GitHub
parent e4f3e5053f
commit b4666b1d0d
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 {
extName = 'MangaDex'
pkgNameSuffix = 'all.mangadex'
extClass = '.MangaDexFactory'
extVersionCode = 99
extVersionCode = 100
libVersion = '1.2'
containsNsfw = true
}

View File

@ -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 {