fix(YellowNote): unable to load next page (#11181)

This commit is contained in:
marioplus 2025-10-22 13:29:03 +08:00 committed by Draff
parent 3968208d9c
commit 3af84ded97
Signed by: Draff
GPG Key ID: E8A89F3211677653
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
ext {
extName = 'YellowNote'
extClass = '.YellowNote'
extVersionCode = 2
extVersionCode = 3
isNsfw = true
}

View File

@ -95,7 +95,7 @@ class YellowNote : SimpleParsedHttpSource(), ConfigurableSource {
}
override fun simpleNextPageSelector() =
"div.pager:first-of-type > span.pager-num.current + a.pager-num"
"div.pager:first-of-type > a.pager-next"
override fun popularMangaRequest(page: Int) =
GET("$baseUrl/photos/sort-hot/$page.html", headers)