From 0ed34cec09fe295e0371c0d76689be01af0def63 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Wed, 9 Oct 2024 08:42:33 -0400 Subject: [PATCH] Fixes https://github.com/vitorpamplona/amethyst/issues/1130 --- .../main/java/com/vitorpamplona/amethyst/LocalPreferences.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/LocalPreferences.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/LocalPreferences.kt index 04a82a0c7..2633d90f8 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/LocalPreferences.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/LocalPreferences.kt @@ -182,7 +182,7 @@ object LocalPreferences { savedAccounts.emit(migrated) - edit().apply { putString(PrefKeys.ALL_ACCOUNT_INFO, Event.mapper.writeValueAsString(savedAccounts)) }.apply() + edit().apply { putString(PrefKeys.ALL_ACCOUNT_INFO, Event.mapper.writeValueAsString(savedAccounts.value)) }.apply() } } }