Yushuke Mangas: Fix chapters list (#7400)

fix: chapters list
This commit is contained in:
Hellkaros 2025-02-01 09:40:14 -03:00 committed by Draff
parent f46b854fad
commit 9a7eaafc20
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
ext {
extName = 'Yushuke Mangas'
extClass = '.YushukeMangas'
extVersionCode = 2
extVersionCode = 3
}
apply from: "$rootDir/common.gradle"

View File

@ -180,7 +180,7 @@ class YushukeMangas : ParsedHttpSource() {
}
private fun fetchChapterListPage(mangaId: String, page: Int): Response {
val url = "$baseUrl/ajax/load_more_chapters.php?order=DESC".toHttpUrl().newBuilder()
val url = "$baseUrl/ajax/carregar_capitulos.php?order=DESC".toHttpUrl().newBuilder()
.addQueryParameter("manga_id", mangaId)
.addQueryParameter("page", page.toString())
.build()