Fix HTTP 404 in YM (#18717)

Fix HTTP 404 in YM.
This commit is contained in:
Alessandro Jean 2023-10-25 16:04:44 -03:00 committed by GitHub
parent b2d783db9d
commit 3d74da2c0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ ext {
extName = 'Yugen Mangás'
pkgNameSuffix = 'pt.yugenmangas'
extClass = '.YugenMangas'
extVersionCode = 36
extVersionCode = 37
}
apply from: "$rootDir/common.gradle"

View File

@ -130,7 +130,7 @@ class YugenMangas : ParsedHttpSource() {
.set("Referer", getChapterUrl(chapter))
.build()
return GET("$baseUrl/api/serie/${paths[1]}/chapter/${paths[2]}/images", newHeaders)
return GET("$baseUrl/api/serie/${paths[1]}/chapter/${paths[2]}/images/imgs", newHeaders)
}
override fun pageListParse(response: Response): List<Page> {