Remove Channel Messages from event datasource

This commit is contained in:
Vitor Pamplona
2023-01-27 22:04:25 -03:00
parent 9f2f0727a0
commit 11cfc90d36

View File

@@ -24,7 +24,7 @@ object NostrSingleEventDataSource: NostrDataSource<Note>("SingleEventFeed") {
// downloads all the reactions to a given event.
return JsonFilter(
kinds = listOf(
TextNoteEvent.kind, ReactionEvent.kind, RepostEvent.kind, ChannelMessageEvent.kind
TextNoteEvent.kind, ReactionEvent.kind, RepostEvent.kind
),
tags = mapOf("e" to reactionsToWatch)
)