ManhwaLatino: Update selectors (#15036)

* Update Selectors

* Update Selectors
This commit is contained in:
seew3l 2023-01-20 10:12:34 -05:00 committed by GitHub
parent df601fdade
commit cf2654812a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ ext {
extName = 'Manhwa-Latino'
pkgNameSuffix = 'es.manhwalatino'
extClass = '.ManhwaLatino'
extVersionCode = 21
extVersionCode = 22
isNsfw = true
}

View File

@ -31,10 +31,10 @@ object MLConstants {
const val latestUpdatesSelectorThumbnailUrl = "div.slider__thumb_item > a > img"
const val latestUpdatesSelectorTitle = "div.slider__content h4"
const val latestUpdatesSelectorUrl = "div.slider__content h4 a"
const val chapterListParseSelector = "li.vireimanga-chapter"
const val chapterListParseSelector = "div.listing-chapters_wrap > ul > li"
const val chapterLinkParser = "a"
const val chapterReleaseDateLinkParser = "span.chapter-release-date a"
const val chapterReleaseDateIParser = "span.chapter-release-date i"
const val pageListParseSelector = "div.page-break.no-gaps img"
const val pageListParseSelector = "div.read-container img"
const val imageAttribute = "abs:data-src"
}