Merge pull request #2932 from vitorpamplona/claude/fix-fdroid-exception-8ZHJH

Fix ChatroomListKnownFeedFilter to use flowSet instead of flow
This commit is contained in:
Vitor Pamplona
2026-05-16 08:36:05 -04:00
committed by GitHub
@@ -55,10 +55,10 @@ class ChatroomListKnownFeedFilter(
val publicChannels =
account
.publicChatList.flow.value
.mapNotNull { it ->
.publicChatList.flowSet.value
.mapNotNull { channelId ->
LocalCache
.getOrCreatePublicChatChannel(it.eventId)
.getOrCreatePublicChatChannel(channelId)
.notes
.filter { _, it -> account.isAcceptable(it) && it.event != null }
.sortedWith(DefaultFeedOrder)