zh/boylove: Fix parsing popular page (#6964)

zh/boylove: fix popular list
This commit is contained in:
morallkat 2025-01-04 07:54:05 +08:00 committed by GitHub
parent a35da737a3
commit 4e4d8f7333
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
ext {
extName = 'BoyLove'
extClass = '.BoyLove'
extVersionCode = 11
extVersionCode = 12
isNsfw = true
}

View File

@ -53,7 +53,7 @@ class BoyLove : HttpSource(), ConfigurableSource {
.build()
override fun popularMangaRequest(page: Int): Request =
GET("$baseUrl/home/api/getpage/tp/1-topest-${page - 1}", headers)
GET("$baseUrl/home/api/getpage/tp/1-topestmh-${page - 1}", headers)
override fun popularMangaParse(response: Response): MangasPage {
val listPage: ListPageDto<MangaDto> = response.parseAs()