mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-10-31 06:17:57 +01:00 
			
		
		
		
	handle maxNumberSort from API (#5917)
This commit is contained in:
		| @@ -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 | ||||
|   | ||||
| @@ -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, | ||||
| ) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user