Enabled the reactions expand control for zapraisers even when there are no zaps

This commit is contained in:
davotoula
2026-01-22 18:32:37 +01:00
parent 8bbeb9aadb
commit 1e611a3fb5
@@ -415,7 +415,9 @@ private fun WatchReactionsZapsBoostsAndDisplayIfExists(
) { ) {
val hasReactions by observeNoteReferences(baseNote, accountViewModel) val hasReactions by observeNoteReferences(baseNote, accountViewModel)
if (hasReactions) { val hasZapraiser = (baseNote.event?.zapraiserAmount() ?: 0) > 0
if (hasReactions || hasZapraiser) {
content() content()
} }
} }