removes the account retainer logic

This commit is contained in:
Vitor Pamplona
2026-04-24 13:39:00 -04:00
parent 711a70cdb4
commit d8a8082887
@@ -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))
// }
}
}