diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/service/notifications/AlwaysOnNotificationServiceManager.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/service/notifications/AlwaysOnNotificationServiceManager.kt index 8cffc6edb..b124ba8ca 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/service/notifications/AlwaysOnNotificationServiceManager.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/service/notifications/AlwaysOnNotificationServiceManager.kt @@ -160,9 +160,10 @@ class AlwaysOnNotificationServiceManager( private fun stopMultiAccountPreload() { preloadJob?.cancel() preloadJob = null - val active = activePubKeyProvider() - if (active != null) { - accountsCache.retainOnly(setOf(active)) - } + // remove this because we don't know which other accounts might be getting used. + // val active = activePubKeyProvider() + // if (active != null) { + // accountsCache.retainOnly(setOf(active)) + // } } }