mirror of
https://github.com/mihonapp/mihon.git
synced 2025-11-12 12:08:56 +01:00
Fix selection in library (#8233)
This commit is contained in:
@@ -11,9 +11,9 @@ data class LibraryManga(
|
||||
val chapterFetchedAt: Long,
|
||||
val lastRead: Long,
|
||||
) {
|
||||
val totalChapters
|
||||
get() = readCount + unreadCount
|
||||
val id: Long = manga.id
|
||||
|
||||
val hasStarted
|
||||
get() = readCount > 0
|
||||
val totalChapters = readCount + unreadCount
|
||||
|
||||
val hasStarted = readCount > 0
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user