From 5420ddd338bc61c2cac20d7fa9b77fc4fa6e023f Mon Sep 17 00:00:00 2001 From: David Kaspar Date: Sun, 3 Aug 2025 10:35:40 +0200 Subject: [PATCH] lets pass LocalCache instead of account.cache, as it was before --- .../amethyst/ui/screen/loggedIn/AccountViewModel.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/AccountViewModel.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/AccountViewModel.kt index 47b886e32..39dd1126f 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/AccountViewModel.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/AccountViewModel.kt @@ -173,7 +173,7 @@ class AccountViewModel( scope = viewModelScope, ) - val newNotesPreProcessor = EventProcessor(account, account.cache) + val newNotesPreProcessor = EventProcessor(account, LocalCache) var firstRoute: Route? = null