HolyManga: Update theme to FMReader (#7131)

* fix: update theme to FMReader

* fix: update versionId
This commit is contained in:
Hellkaros 2025-01-12 06:29:45 -03:00 committed by Draff
parent f5708a63fc
commit b088ba606b
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
2 changed files with 5 additions and 9 deletions

View File

@ -1,9 +1,9 @@
ext { ext {
extName = 'HolyManga' extName = 'HolyManga'
extClass = '.HolyManga' extClass = '.HolyManga'
themePkg = 'zbulu' themePkg = 'fmreader'
baseUrl = 'https://w34.holymanga.net' baseUrl = 'https://w34.holymanga.net'
overrideVersionCode = 4 overrideVersionCode = 2
isNsfw = true isNsfw = true
} }

View File

@ -1,15 +1,11 @@
package eu.kanade.tachiyomi.extension.en.holymanga package eu.kanade.tachiyomi.extension.en.holymanga
import eu.kanade.tachiyomi.multisrc.zbulu.Zbulu import eu.kanade.tachiyomi.multisrc.fmreader.FMReader
import eu.kanade.tachiyomi.network.GET
import okhttp3.Request
class HolyManga : Zbulu( class HolyManga : FMReader(
"HolyManga", "HolyManga",
"https://w34.holymanga.net", "https://w34.holymanga.net",
"en", "en",
) { ) {
override fun popularMangaRequest(page: Int): Request { override val versionId = 2
return GET("$baseUrl/popular-manga/page-$page/", headers)
}
} }