Hitomi: Fix missing field error (#6681)

Quick fix
This commit is contained in:
are-are-are 2024-12-19 18:49:16 +07:00 committed by Draff
parent 7ec1dfaf48
commit bfe8f5d00f
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
ext {
extName = 'Hitomi'
extClass = '.HitomiFactory'
extVersionCode = 33
extVersionCode = 34
isNsfw = true
}

View File

@ -22,9 +22,9 @@ class Gallery(
@Serializable
class ImageFile(
val hash: String,
val haswebp: Int,
val hasavif: Int,
val hasjxl: Int,
val haswebp: Int?,
val hasavif: Int?,
val hasjxl: Int?,
)
@Serializable