MangaTigre: Fix omakes ()

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
src/es/mangatigre
build.gradle
src/eu/kanade/tachiyomi/extension/es/mangatigre

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

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