diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/model/Account.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/model/Account.kt index 36f52680a..cbdc6873d 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/model/Account.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/model/Account.kt @@ -1147,9 +1147,7 @@ class Account( .stateIn( scope, SharingStarted.Eagerly, - runBlocking(Dispatchers.Default) { - convertEmojiSelectionPack(getEmojiPackSelection()) - }, + convertEmojiSelectionPack(getEmojiPackSelection()), ) } @@ -1187,9 +1185,7 @@ class Account( .stateIn( scope, SharingStarted.Eagerly, - runBlocking(Dispatchers.Default) { - mergePack(convertEmojiSelectionPack(getEmojiPackSelection())?.map { it.value }?.toTypedArray() ?: emptyArray()) - }, + mergePack(convertEmojiSelectionPack(getEmojiPackSelection())?.map { it.value }?.toTypedArray() ?: emptyArray()), ) }