From ace1401a2750eae36771eafb4f3b181aca68ab02 Mon Sep 17 00:00:00 2001 From: The Daniel Date: Sat, 28 Feb 2026 17:44:04 -0500 Subject: [PATCH] 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. --- .../com/vitorpamplona/amethyst/ui/components/RichTextViewer.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/components/RichTextViewer.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/components/RichTextViewer.kt index 73aa212b6..7870428f5 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/components/RichTextViewer.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/components/RichTextViewer.kt @@ -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,