Skip to content

Commit

Permalink
change also description select
Browse files Browse the repository at this point in the history
  • Loading branch information
dngonz committed Jan 5, 2025
1 parent 65ac76f commit 9af5064
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ abstract class Keyoapp(
override fun mangaDetailsParse(document: Document): SManga = SManga.create().apply {
title = document.selectFirst("div.grid > h1")!!.text()
thumbnail_url = document.getImageUrl("div[class*=photoURL]")
description = document.selectFirst("p.rounded-lg")?.text()
description = document.selectFirst("div:containsOwn(Synopsis) ~ div")?.text()
status = document.selectFirst("div:has(span:containsOwn(Status)) ~ div").parseStatus()
author = document.selectFirst("div:has(span:containsOwn(Author)) ~ div")?.text()
artist = document.selectFirst("div:has(span:containsOwn(Artist)) ~ div")?.text()
Expand Down

0 comments on commit 9af5064

Please sign in to comment.