zh-dmzj: Make ChapterOrder field optional (#7912)

This commit is contained in:
Kai Liu 2021-06-29 02:17:22 +08:00 committed by GitHub
parent 3a3962e0b3
commit 97e18a0ba2
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 = 23
extVersionCode = 24
libVersion = '1.2'
}

View File

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