Earlym: Fix unexpected JSON token (#1108)

One char fix
This commit is contained in:
LLecca 2024-02-07 21:30:03 -05:00 committed by Draff
parent b2ddfd348b
commit b78d35db07
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
ext {
extName = 'EarlyManga'
extClass = '.EarlyManga'
extVersionCode = 24
extVersionCode = 25
}
apply from: "$rootDir/common.gradle"

View File

@ -59,7 +59,7 @@ data class Chapter(
val id: Int,
val manga_id: Int,
val slug: String,
val on_disk: Int,
val on_disk: Int?,
val images: List<String>,
)