Increases Home feed to 400

This commit is contained in:
Vitor Pamplona 2023-01-30 13:50:56 -03:00
parent e59dfa7a76
commit 3a834a932c

View File

@ -48,7 +48,7 @@ object NostrHomeDataSource: NostrDataSource<Note>("HomeFeed") {
return JsonFilter(
kinds = listOf(TextNoteEvent.kind, RepostEvent.kind),
authors = followSet,
limit = 200
limit = 400
)
}