MangaTigre: Fix omakes (#16499)

Fix omakes
This commit is contained in:
Rolando Lecca 2023-05-19 11:40:48 -05:00 committed by GitHub
parent 260633c923
commit 573eb96799
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ ext {
extName = 'MangaTigre'
pkgNameSuffix = 'es.mangatigre'
extClass = '.MangaTigre'
extVersionCode = 1
extVersionCode = 2
isNsfw = true
}

View File

@ -38,7 +38,7 @@ data class MangasDataDto(
@Serializable
data class ChapterDto(
val manga: ChapterMangaInfoDto,
val number: Int,
val number: Float,
val images: Map<String, ChapterImagesDto>,
)