Fix boosted posts not showing up in the Main Follows feed

This commit is contained in:
Vitor Pamplona 2023-01-25 10:46:14 -03:00
parent e7b6ca1bb2
commit 965cdd9304
2 changed files with 2 additions and 2 deletions

View File

@ -164,7 +164,7 @@ fun NoteCompose(baseNote: Note, modifier: Modifier = Modifier, isInnerNote: Bool
note.replyTo?.mapIndexed { index, note ->
NoteCompose(
note,
modifier = Modifier.padding(top = 5.dp),
modifier = Modifier,
isInnerNote = true,
accountViewModel = accountViewModel,
navController = navController

View File

@ -56,7 +56,7 @@ class NostrHomeFeedViewModel: FeedViewModel(NostrHomeDataSource) {
override fun newListFromDataSource(): List<Note> {
// Filter: no replies
return dataSource.feed().filter {
it.replyTo == null || it.replyTo?.size == 0
it.event is RepostEvent || it.replyTo == null || it.replyTo?.size == 0
}.take(100)
}
}