Skip to content

Commit

Permalink
Fix MangaRead not loading images (#345)
Browse files Browse the repository at this point in the history
  • Loading branch information
scrazzz authored Aug 3, 2022
1 parent 0e91d1f commit d2eca5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/ani/saikou/parsers/manga/MangaRead.kt
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class MangaRead: MangaParser() {
val doc = client.get(chapterLink).document
val imgs = doc.select("div.reading-content > div > img")
return imgs.map {
MangaImage(url = it.attr("href"))
MangaImage(url = it.attr("data-src").trim())
}
}

Expand Down

0 comments on commit d2eca5a

Please sign in to comment.