Fix Vortex Scans (#8645)

This commit is contained in:
Creepler13 2025-04-26 15:40:07 +02:00 committed by Draff
parent 590f013578
commit 5818f1dc64
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
3 changed files with 3 additions and 2 deletions

View File

@ -2,4 +2,4 @@ plugins {
id("lib-multisrc")
}
baseVersionCode = 8
baseVersionCode = 9

View File

@ -127,7 +127,7 @@ abstract class Iken(
val userId = userIdRegex.find(response.body.string())?.groupValues?.get(1) ?: ""
val id = response.request.url.fragment!!
val chapterUrl = "$apiUrl/api/chapters?postId=$id&skip=0&take=1000&order=desc&userid=$userId"
val chapterUrl = "$apiUrl/api/chapters?postId=$id&skip=0&take=900&order=desc&userid=$userId"
val chapterResponse = client.newCall(GET(chapterUrl, headers)).execute()
val data = chapterResponse.parseAs<Post<ChapterListResponse>>()

View File

@ -7,6 +7,7 @@ class VortexScans : Iken(
"Vortex Scans",
"en",
"https://vortexscans.org",
"https://api.vortexscans.org",
) {
override fun popularMangaRequest(page: Int) = GET(baseUrl, headers)
}