Skip to content

Commit

Permalink
Hitomi: Fix missing field error (#6681)
Browse files Browse the repository at this point in the history
Quick fix
  • Loading branch information
dejavui authored Dec 19, 2024
1 parent f7a8f3e commit 454adc5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/all/hitomi/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ext {
extName = 'Hitomi'
extClass = '.HitomiFactory'
extVersionCode = 33
extVersionCode = 34
isNsfw = true
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 454adc5

Please sign in to comment.