书籍管理界面不显示音频类

This commit is contained in:
HapeLee
2026-05-31 01:25:26 +08:00
parent 978d6d2840
commit f0fe3875ab
@@ -346,7 +346,7 @@ class BookshelfManageScreenViewModel(
booksJob?.cancel()
booksJob = viewModelScope.launch {
bookRepository.flowBookShelfByGroup(groupId).map { books ->
val booksDownload = books.filter { !it.isAudio }.map { it.toLightBook() }
val booksDownload = books.map { it.toLightBook() }
val bookSort = bookshelfManageScreenConfig.getBookSortByGroupId(groupId)
val isDescending = bookshelfManageScreenConfig.bookshelfSortOrder == 1
bookSort to when (bookSort) {