diff --git a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/vi/CuuTruyenParser.kt b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/vi/CuuTruyenParser.kt index c55473b4..e302709a 100644 --- a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/vi/CuuTruyenParser.kt +++ b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/vi/CuuTruyenParser.kt @@ -37,7 +37,6 @@ internal class CuuTruyenParser(context: MangaLoaderContext) : .build() private val decryptionKey = "3141592653589793" - private val itemsPerPage: Int = 20 override suspend fun getAvailableTags(): Set = emptySet() @@ -73,7 +72,7 @@ internal class CuuTruyenParser(context: MangaLoaderContext) : } append("&per_page=") - append(itemsPerPage) + append(pageSize) } val json = webClient.httpGet(url).parseJson()