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() { private fun stopMultiAccountPreload() {
preloadJob?.cancel() preloadJob?.cancel()
preloadJob = null preloadJob = null
val active = activePubKeyProvider() // remove this because we don't know which other accounts might be getting used.
if (active != null) { // val active = activePubKeyProvider()
accountsCache.retainOnly(setOf(active)) // if (active != null) {
} // accountsCache.retainOnly(setOf(active))
// }
} }
} }