fix(EveriaClub): fix latest posts selector (#17632)

* fix(EveriaClub): update `latestUpdatesSelector`

* chore(EveriaClub): bump `extVersionCode`
This commit is contained in:
korafu 2023-08-23 11:03:51 -05:00 committed by GitHub
parent cb65d3bb4e
commit 2a73ba92c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ ext {
extName = 'Everia.club' extName = 'Everia.club'
pkgNameSuffix = 'all.everiaclub' pkgNameSuffix = 'all.everiaclub'
extClass = '.EveriaClub' extClass = '.EveriaClub'
extVersionCode = 6 extVersionCode = 7
isNsfw = true isNsfw = true
} }

View File

@ -41,7 +41,7 @@ class EveriaClub() : ParsedHttpSource() {
return GET("$baseUrl/page/$page/") return GET("$baseUrl/page/$page/")
} }
override fun latestUpdatesSelector() = ".posts-wrapper > article" override fun latestUpdatesSelector() = "#blog-entries > article"
// Popular // Popular
override fun popularMangaFromElement(element: Element): SManga { override fun popularMangaFromElement(element: Element): SManga {