mirror of
https://github.com/null2264/yokai.git
synced 2025-06-21 02:34:39 +00:00
fix errors with gradle update (foolslide class)
This commit is contained in:
parent
39cb70d90d
commit
54f002d5b2
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ open class FoolSlide(override val domainName: String, private val urlModifier: S
|
|||
val request = GET("${delegate!!.baseUrl}$url")
|
||||
val document = network.client.newCall(allowAdult(request)).await().asJsoup()
|
||||
val mangaDetailsInfoSelector = "div.info"
|
||||
val infoElement = document.select(mangaDetailsInfoSelector).first().text()
|
||||
val infoElement = document.select(mangaDetailsInfoSelector).first()?.text() ?: return null
|
||||
return MangaImpl().apply {
|
||||
this.url = url
|
||||
source = delegate?.id ?: -1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue