zh-dmzj: Make Filesize field optional (#9533)

This commit is contained in:
Kai Liu 2021-10-19 20:44:13 +08:00 committed by GitHub
parent 9ed009d908
commit 8d056bfb26
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 = 'Dmzj'
pkgNameSuffix = 'zh.dmzj'
extClass = '.Dmzj'
extVersionCode = 24
extVersionCode = 25
}
dependencies {

View File

@ -61,6 +61,6 @@ data class ComicDetailChapterInfoResponse(
@ProtoNumber(1) val ChapterId: Int,
@ProtoNumber(2) val ChapterTitle: String,
@ProtoNumber(3) val Updatetime: Long,
@ProtoNumber(4) val Filesize: Int,
@ProtoNumber(4) val Filesize: Int = 0,
@ProtoNumber(5) val ChapterOrder: Int = 0,
)