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,
|
baseNote = note,
|
||||||
modifier = MaterialTheme.colorScheme.innerPostModifier,
|
modifier = MaterialTheme.colorScheme.innerPostModifier,
|
||||||
isQuotedNote = true,
|
isQuotedNote = true,
|
||||||
|
unPackReply = false,
|
||||||
quotesLeft = quotesLeft - 1,
|
quotesLeft = quotesLeft - 1,
|
||||||
parentBackgroundColor = backgroundColor,
|
parentBackgroundColor = backgroundColor,
|
||||||
accountViewModel = accountViewModel,
|
accountViewModel = accountViewModel,
|
||||||
@@ -867,6 +868,7 @@ private fun DisplayNoteFromTag(
|
|||||||
baseNote = baseNote,
|
baseNote = baseNote,
|
||||||
modifier = MaterialTheme.colorScheme.innerPostModifier,
|
modifier = MaterialTheme.colorScheme.innerPostModifier,
|
||||||
isQuotedNote = true,
|
isQuotedNote = true,
|
||||||
|
unPackReply = false,
|
||||||
quotesLeft = quotesLeft - 1,
|
quotesLeft = quotesLeft - 1,
|
||||||
parentBackgroundColor = backgroundColor,
|
parentBackgroundColor = backgroundColor,
|
||||||
accountViewModel = accountViewModel,
|
accountViewModel = accountViewModel,
|
||||||
|
|||||||
Reference in New Issue
Block a user