Ikiru: update domain (#10964)

* Ikiru: update domain

also increase random number to decrease the odds of blocking certain number

* Update src/id/mangatale/src/eu/kanade/tachiyomi/extension/id/mangatale/Ikiru.kt

Co-authored-by: Vetle Ledaal <vetle.ledaal@gmail.com>

---------

Co-authored-by: Vetle Ledaal <vetle.ledaal@gmail.com>
This commit is contained in:
Luqman 2025-10-11 14:33:05 +07:00 committed by Draff
parent b0bfe86ca2
commit 7112ffb937
Signed by: Draff
GPG Key ID: E8A89F3211677653
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
ext {
extName = 'Ikiru'
extClass = '.Ikiru'
extVersionCode = 41
extVersionCode = 42
isNsfw = true
}

View File

@ -27,7 +27,7 @@ class Ikiru : ParsedHttpSource() {
override val id = 1532456597012176985
override val name = "Ikiru"
override val baseUrl = "https://01.ikiru.wtf"
override val baseUrl = "https://02.ikiru.wtf"
override val lang = "id"
override val supportsLatest = true
@ -129,7 +129,7 @@ class Ikiru : ParsedHttpSource() {
val chapterListUrl = "$baseUrl/ajax-call".toHttpUrl().newBuilder()
.addQueryParameter("manga_id", mangaId)
.addQueryParameter("page", "${Random.nextInt(5, 99)}") // keep above 3 for loading hidden chapter
.addQueryParameter("page", "${Random.nextInt(99, 9999)}") // keep above 3 for loading hidden chapter
.addQueryParameter("action", "chapter_list")
.build()