Update common dependencies (#441)

Update common dependencies
This commit is contained in:
Eugene
2018-08-05 16:48:02 -04:00
committed by Carlos
parent 83a82e1181
commit d2f6744188
18 changed files with 39 additions and 43 deletions

View File

@ -39,7 +39,7 @@ class Truyentranhlh : HttpSource() {
popularMangaFromElement(element)
}
val hasNextPage = popularMangaNextPageSelector()?.let { selector ->
val hasNextPage = popularMangaNextPageSelector().let { selector ->
document.select(selector).first()
} != null
@ -58,7 +58,7 @@ class Truyentranhlh : HttpSource() {
latestUpdatesFromElement(element)
}
val hasNextPage = latestUpdatesNextPageSelector()?.let { selector ->
val hasNextPage = latestUpdatesNextPageSelector().let { selector ->
document.select(selector).first()
} != null
@ -188,4 +188,4 @@ class Truyentranhlh : HttpSource() {
override fun imageUrlParse(response: Response): String {
return ""
}
}
}