ManhuaRock: Change domain and fix pages (#7520)

change domain and fix pages
This commit is contained in:
dngonz 2025-02-06 14:25:31 +01:00 committed by Draff
parent 2d6ded730e
commit b4f3f5f565
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
ext {
extName = "ManhuaRock"
extClass = ".ManhuaRock"
extVersionCode = 10
extVersionCode = 11
}
apply from: "$rootDir/common.gradle"

View File

@ -34,7 +34,7 @@ class ManhuaRock : ParsedHttpSource() {
override val lang = "vi"
override val baseUrl = "https://manhuarockz.com"
override val baseUrl = "https://manhuarock1.com"
override val supportsLatest = true
@ -150,7 +150,7 @@ class ManhuaRock : ParsedHttpSource() {
override fun pageListParse(document: Document): List<Page> {
return document.select("img").mapIndexed { i, it ->
Page(i, imageUrl = it.attr("abs:data-src"))
Page(i, imageUrl = it.attr("abs:src"))
}
}