fix: suppress parent thread in quoted notes
Adds unPackReply = false to both DisplayFullNote (nostr: bech links) and DisplayNoteFromTag (tag references) so that quoted notes only show the quoted post itself without its parent thread context.
This commit is contained in:
@@ -595,6 +595,7 @@ fun DisplayFullNote(
|
||||
baseNote = note,
|
||||
modifier = MaterialTheme.colorScheme.innerPostModifier,
|
||||
isQuotedNote = true,
|
||||
unPackReply = false,
|
||||
quotesLeft = quotesLeft - 1,
|
||||
parentBackgroundColor = backgroundColor,
|
||||
accountViewModel = accountViewModel,
|
||||
@@ -867,6 +868,7 @@ private fun DisplayNoteFromTag(
|
||||
baseNote = baseNote,
|
||||
modifier = MaterialTheme.colorScheme.innerPostModifier,
|
||||
isQuotedNote = true,
|
||||
unPackReply = false,
|
||||
quotesLeft = quotesLeft - 1,
|
||||
parentBackgroundColor = backgroundColor,
|
||||
accountViewModel = accountViewModel,
|
||||
|
||||
Reference in New Issue
Block a user