[WeebCentral] Fix title not found

master
Draken 1 year ago committed by GitHub
parent 2e5ce98bac
commit e429cdd811
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -180,11 +180,13 @@ internal class WeebCentral(context: MangaLoaderContext) : LegacyMangaParser(cont
.toHttpUrl() .toHttpUrl()
.pathSegments[1] .pathSegments[1]
val author = document.select("div:contains(author) a").eachText().joinToString().nullIfEmpty() val author = document.select("div:contains(author) a").eachText().joinToString().nullIfEmpty()
val title = element.selectFirst("div.text-ellipsis.truncate.text-white.text-center.text-lg.z-20.w-\\[90\\%\\]")?.text()
?: "No name"
Manga( Manga(
id = generateUid(mangaId), id = generateUid(mangaId),
url = mangaId, url = mangaId,
publicUrl = "https://$domain/series/$mangaId", publicUrl = "https://$domain/series/$mangaId",
title = element.selectFirstOrThrow("abbr[title] > a").text(), title = title,
altTitles = emptySet(), altTitles = emptySet(),
rating = RATING_UNKNOWN, rating = RATING_UNKNOWN,
contentRating = if (element.selectFirst("svg:has(style:containsData(ff0000))") == null) { contentRating = if (element.selectFirst("svg:has(style:containsData(ff0000))") == null) {

Loading…
Cancel
Save