🛠️ Fix issues with item selection in Library and Browse

This commit is contained in:
Acclorite 2025-03-04 20:50:06 +02:00
parent 6430fc4e51
commit b57434aaa3
2 changed files with 1 additions and 1 deletions

View file

@ -407,7 +407,6 @@ class BrowseModel @Inject constructor(
_state.update { _state.update {
it.copy( it.copy(
files = this, files = this,
selectedItemsCount = 0,
hasSelectedItems = false, hasSelectedItems = false,
isLoading = false isLoading = false
) )

View file

@ -307,6 +307,7 @@ class LibraryModel @Inject constructor(
_state.update { _state.update {
it.copy( it.copy(
books = books, books = books,
hasSelectedItems = false,
isLoading = false isLoading = false
) )
} }