Unable to fetch thumbnails fixed

This commit is contained in:
tom5079
2020-07-29 10:53:50 +09:00
parent 388bc6fda5
commit 132b3b9be1
3 changed files with 5 additions and 5 deletions

View File

@@ -83,7 +83,7 @@ fun getGalleryBlock(galleryID: Int) : GalleryBlock? {
val galleryUrl = doc.selectFirst(".lillie").attr("href")
val thumbnails = doc.select("img").map { protocol + it.attr("data-src") }
val thumbnails = doc.select(".dj-img-cont img").map { protocol + it.attr("src") }
val title = doc.selectFirst("h1.lillie > a").text()
val artists = doc.select("div.artist-list a").map{ it.text() }