diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/ReactionsRow.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/ReactionsRow.kt index ffcb0a2d4..35beac436 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/ReactionsRow.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/ReactionsRow.kt @@ -415,7 +415,9 @@ private fun WatchReactionsZapsBoostsAndDisplayIfExists( ) { val hasReactions by observeNoteReferences(baseNote, accountViewModel) - if (hasReactions) { + val hasZapraiser = (baseNote.event?.zapraiserAmount() ?: 0) > 0 + + if (hasReactions || hasZapraiser) { content() } }