Moves the # of downloaded msgs for channel index to 100 in the hopes that none of the 100 are being filtered by spam.

This commit is contained in:
Vitor Pamplona
2023-02-23 14:45:39 -05:00
parent f455898ac4
commit c12ec88e96

View File

@@ -65,7 +65,7 @@ object NostrChatroomListDataSource: NostrDataSource("MailBoxFeed") {
filter = JsonFilter( filter = JsonFilter(
kinds = listOf(ChannelMessageEvent.kind), kinds = listOf(ChannelMessageEvent.kind),
tags = mapOf("e" to listOf(it)), tags = mapOf("e" to listOf(it)),
limit = 10 limit = 100 // Remember to consider spam that is being removed from the UI
) )
) )
} }