Fix crash downloading of manga from Readmangatoday (#1071)

Close #1070
This commit is contained in:
Naji Astier 2017-11-20 10:06:23 +01:00 committed by Bram van de Kerkhof
parent 88d1f29fe2
commit c93bf89cbe

View File

@ -161,7 +161,7 @@ class Readmangatoday : ParsedHttpSource() {
return pages
}
override fun imageUrlParse(document: Document) = document.select("img.img-responsive-2").first().attr("src")
override fun imageUrlParse(document: Document) = document.select("#chapter_img").first().attr("src")
private class Status : Filter.TriState("Completed")
private class Genre(name: String, val id: Int) : Filter.TriState(name)