MangaPark v3: Fix #9240 (#9247)

* Bump Version

* Remove unnecessary /
This commit is contained in:
FourTOne5 2021-09-26 23:43:25 +06:00 committed by GitHub
parent c4047e7c96
commit 82438450d0
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 = 'MangaPark v3'
pkgNameSuffix = 'all.mangapark'
extClass = '.MangaParkFactory'
extVersionCode = 10
extVersionCode = 11
containsNsfw = true
}

View File

@ -195,7 +195,7 @@ open class MangaPark(
}
override fun chapterListRequest(manga: SManga): Request {
val sid = "$baseUrl/${manga.url}".toHttpUrl().pathSegments[1].toInt()
val sid = "$baseUrl${manga.url}".toHttpUrl().pathSegments[1].toInt()
val jsonPayload = buildJsonObject {
put("lang", siteLang)