handle maxNumberSort from API (#5917)

This commit is contained in:
Gauthier 2021-09-17 05:37:42 +08:00 committed by GitHub
parent f125ab01ee
commit d45fefd6f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -47,7 +47,7 @@ class KomgaApi(private val client: OkHttpClient) {
track.apply {
cover_url = "$url/thumbnail"
tracking_url = url
total_chapters = progress.booksCount
total_chapters = progress.maxNumberSort.toInt()
status = when (progress.booksCount) {
progress.booksUnreadCount -> Komga.UNREAD
progress.booksReadCount -> Komga.COMPLETED

View File

@ -91,7 +91,8 @@ data class ReadProgressDto(
booksReadCount,
booksUnreadCount,
booksInProgressCount,
lastReadContinuousIndex.toFloat()
lastReadContinuousIndex.toFloat(),
booksCount.toFloat(),
)
}
@ -102,4 +103,5 @@ data class ReadProgressV2Dto(
val booksUnreadCount: Int,
val booksInProgressCount: Int,
val lastReadContinuousNumberSort: Float,
val maxNumberSort: Float,
)