slight change to url (#5340)
This commit is contained in:
parent
d06114f48d
commit
1f2cac98df
|
@ -5,7 +5,7 @@ ext {
|
||||||
extName = 'MangaDex'
|
extName = 'MangaDex'
|
||||||
pkgNameSuffix = 'all.mangadex'
|
pkgNameSuffix = 'all.mangadex'
|
||||||
extClass = '.MangaDexFactory'
|
extClass = '.MangaDexFactory'
|
||||||
extVersionCode = 98
|
extVersionCode = 99
|
||||||
libVersion = '1.2'
|
libVersion = '1.2'
|
||||||
containsNsfw = true
|
containsNsfw = true
|
||||||
}
|
}
|
||||||
|
|
|
@ -569,7 +569,7 @@ abstract class MangaDex(
|
||||||
groups: Map<Int, String>
|
groups: Map<Int, String>
|
||||||
): SChapter {
|
): SChapter {
|
||||||
val chapter = SChapter.create()
|
val chapter = SChapter.create()
|
||||||
chapter.url = API_CHAPTER + chapterJson["id"].string
|
chapter.url = OLD_API_CHAPTER + chapterJson["id"].string
|
||||||
val chapterName = mutableListOf<String>()
|
val chapterName = mutableListOf<String>()
|
||||||
// Build chapter name
|
// Build chapter name
|
||||||
if (chapterJson["volume"].string.isNotBlank()) {
|
if (chapterJson["volume"].string.isNotBlank()) {
|
||||||
|
@ -634,8 +634,9 @@ abstract class MangaDex(
|
||||||
|
|
||||||
val server = getServer()
|
val server = getServer()
|
||||||
val saver = getUseDataSaver()
|
val saver = getUseDataSaver()
|
||||||
|
val newUrl = API_URL + chapter.url.replace(OLD_API_CHAPTER, NEW_API_CHAPTER)
|
||||||
return GET(
|
return GET(
|
||||||
"$API_URL${chapter.url}?server=$server&saver=$saver",
|
"$newUrl?server=$server&saver=$saver",
|
||||||
headers,
|
headers,
|
||||||
CacheControl.FORCE_NETWORK
|
CacheControl.FORCE_NETWORK
|
||||||
)
|
)
|
||||||
|
@ -1028,7 +1029,8 @@ abstract class MangaDex(
|
||||||
private const val API_URL = "https://api.mangadex.org"
|
private const val API_URL = "https://api.mangadex.org"
|
||||||
private const val API_MANGA = "/v2/manga/"
|
private const val API_MANGA = "/v2/manga/"
|
||||||
private const val API_MANGA_INCLUDE_CHAPTERS = "?include=chapters"
|
private const val API_MANGA_INCLUDE_CHAPTERS = "?include=chapters"
|
||||||
private const val API_CHAPTER = "/v2/chapter/"
|
private const val OLD_API_CHAPTER = "/api/chapter/"
|
||||||
|
private const val NEW_API_CHAPTER = "/v2/chapter/"
|
||||||
|
|
||||||
const val PREFIX_ID_SEARCH = "id:"
|
const val PREFIX_ID_SEARCH = "id:"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue