Skip to content

Commit

Permalink
KemonoTheme: Fix chapter URL in Webview (#5662)
Browse files Browse the repository at this point in the history
Fix chapter URL in Webview
  • Loading branch information
choppeh authored Oct 24, 2024
1 parent 360a00e commit e56f0c0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib-multisrc/kemono/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ plugins {
id("lib-multisrc")
}

baseVersionCode = 13
baseVersionCode = 14
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit e56f0c0

Please sign in to comment.