Avoid crash when trying to open random entry but categories are still loading
Fixes #9610
This commit is contained in:
parent
ee95c1439f
commit
0871208023
1 changed files with 2 additions and 0 deletions
|
@ -527,6 +527,8 @@ class LibraryScreenModel(
|
||||||
}
|
}
|
||||||
|
|
||||||
suspend fun getRandomLibraryItemForCurrentCategory(): LibraryItem? {
|
suspend fun getRandomLibraryItemForCurrentCategory(): LibraryItem? {
|
||||||
|
if (state.value.categories.isEmpty()) return null
|
||||||
|
|
||||||
return withIOContext {
|
return withIOContext {
|
||||||
state.value
|
state.value
|
||||||
.getLibraryItemsByCategoryId(state.value.categories[activeCategoryIndex].id)
|
.getLibraryItemsByCategoryId(state.value.categories[activeCategoryIndex].id)
|
||||||
|
|
Reference in a new issue