Fix tag editor apps not loading

This commit is contained in:
MM20 2024-01-19 23:24:18 +01:00
parent 6989c90fbe
commit b433e5884c
No known key found for this signature in database
GPG Key ID: 0B61A8F2DEAFA389

View File

@ -55,7 +55,7 @@ class EditTagSheetVM : ViewModel(), KoinComponent {
viewModelScope.launch(Dispatchers.Default) {
allTags = tagService.getAllTags().first().toSet()
val items = if (tag != null) tagService.getTaggedItems(tag).first() else emptyList()
val apps = appRepository.findMany().first().sorted()
val apps = appRepository.findMany().first { it.isNotEmpty() }.sorted()
taggedItems = items
taggableApps = apps.map { app -> TaggableItem(app, items.any { app.key == it.key }) }
taggableOther = items.mapNotNull { item ->