mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-10 07:37:48 +01:00
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? {
|
||||
if (state.value.categories.isEmpty()) return null
|
||||
|
||||
return withIOContext {
|
||||
state.value
|
||||
.getLibraryItemsByCategoryId(state.value.categories[activeCategoryIndex].id)
|
||||
|
|
Loading…
Reference in a new issue