I Roved Out: Fix loading last page (#11790)

* Simplify page selector

* Bump irovedout version

Co-authored-by: GoldenRover <>
This commit is contained in:
GoldenRover 2022-05-09 15:49:43 +03:00 committed by GitHub
parent da48fe4ae5
commit 6bd22b20b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ ext {
extName = 'I Roved Out'
pkgNameSuffix = 'en.irovedout'
extClass = '.IRovedOut'
extVersionCode = 1
extVersionCode = 2
isNsfw = true
}

View File

@ -62,7 +62,7 @@ class IRovedOut : HttpSource() {
override fun fetchImageUrl(page: Page): Observable<String> {
val comicPage = client.newCall(GET(page.url, headers)).execute().asJsoup()
val imageUrl = comicPage.selectFirst("#comic > a > img").attr("src")
val imageUrl = comicPage.selectFirst("#comic img").attr("src")
return Observable.just(imageUrl)
}