mirror of
https://github.com/vitorpamplona/amethyst.git
synced 2025-10-11 10:42:52 +02:00
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:
@@ -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
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user