5.2.13 Fixed thumbnails not loading

This commit is contained in:
tom5079
2022-01-16 11:29:06 +09:00
parent 37f2227093
commit 843b8412a9
4 changed files with 3 additions and 20 deletions

View File

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