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:
The Daniel
2026-02-28 17:44:04 -05:00
parent 3762c8d6c3
commit ace1401a27
@@ -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,