KemonoTheme: Fix chapter URL in Webview (#5662)
Fix chapter URL in Webview
This commit is contained in:
parent
4b35ae0c78
commit
00c5695acf
|
@ -2,4 +2,4 @@ plugins {
|
|||
id("lib-multisrc")
|
||||
}
|
||||
|
||||
baseVersionCode = 13
|
||||
baseVersionCode = 14
|
||||
|
|
|
@ -191,6 +191,8 @@ open class Kemono(
|
|||
|
||||
override fun mangaDetailsParse(response: Response) = throw UnsupportedOperationException()
|
||||
|
||||
override fun getChapterUrl(chapter: SChapter) = "$baseUrl${chapter.url.replace("$apiPath/", "")}"
|
||||
|
||||
override fun fetchChapterList(manga: SManga): Observable<List<SChapter>> = Observable.fromCallable {
|
||||
KemonoPostDto.dateFormat.timeZone = when (manga.author) {
|
||||
"Pixiv Fanbox", "Fantia" -> TimeZone.getTimeZone("GMT+09:00")
|
||||
|
|
Loading…
Reference in New Issue