From e04a35afed3df7d3572e22d23029c2773bbe591f Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Fri, 6 Oct 2023 16:27:09 -0400 Subject: [PATCH] Fixes bug of not immediately loading chat rooms --- .../vitorpamplona/amethyst/service/NostrAccountDataSource.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/src/main/java/com/vitorpamplona/amethyst/service/NostrAccountDataSource.kt b/app/src/main/java/com/vitorpamplona/amethyst/service/NostrAccountDataSource.kt index 2cae8f0df..90467bf12 100644 --- a/app/src/main/java/com/vitorpamplona/amethyst/service/NostrAccountDataSource.kt +++ b/app/src/main/java/com/vitorpamplona/amethyst/service/NostrAccountDataSource.kt @@ -147,6 +147,8 @@ object NostrAccountDataSource : NostrDataSource("AccountData") { latestEOSEs.addOrUpdate(account.userProfile(), account.defaultNotificationFollowList, relayUrl, time) } else { hasLoadedTheBasics[account.userProfile()] = true + + invalidateFilters() } }