mirror of
https://github.com/vitorpamplona/amethyst.git
synced 2026-08-09 08:04:45 +00:00
Merge pull request #2932 from vitorpamplona/claude/fix-fdroid-exception-8ZHJH
Fix ChatroomListKnownFeedFilter to use flowSet instead of flow
This commit is contained in:
+3
-3
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user