I Roved Out: Fix downloads not finishing (#1758)

* Remove unimplemented override method

* Update extVersionCode
This commit is contained in:
GoldenRover 2024-03-09 04:22:01 +02:00 committed by GitHub
parent 0c9528b28c
commit 0a7d752ff1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 3 deletions

View File

@ -1,7 +1,7 @@
ext { ext {
extName = 'I Roved Out' extName = 'I Roved Out'
extClass = '.IRovedOut' extClass = '.IRovedOut'
extVersionCode = 3 extVersionCode = 4
isNsfw = true isNsfw = true
} }

View File

@ -90,8 +90,6 @@ class IRovedOut : HttpSource() {
return Observable.just(pages) return Observable.just(pages)
} }
override fun pageListRequest(chapter: SChapter): Request = throw UnsupportedOperationException()
override fun pageListParse(response: Response): List<Page> = throw UnsupportedOperationException() override fun pageListParse(response: Response): List<Page> = throw UnsupportedOperationException()
override fun fetchPopularManga(page: Int): Observable<MangasPage> { override fun fetchPopularManga(page: Int): Observable<MangasPage> {