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

pull/152/head
Vitor Pamplona 2023-02-23 14:45:39 -05:00
rodzic f455898ac4
commit c12ec88e96
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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
) )
) )
} }