fix: zap comments missing

This commit is contained in:
2025-05-30 17:06:29 +01:00
parent 1575c7dd09
commit b7764d82c9

View File

@ -27,7 +27,19 @@ class ChatZapWidget extends StatelessWidget {
crossAxisAlignment: CrossAxisAlignment.start,
children: [
_zapperRowZap(context, parsed),
if (parsed.comment?.isNotEmpty ?? false) NoteText(event: zap),
if (parsed.comment?.isNotEmpty ?? false)
RichText(
text: TextSpan(
children: textToSpans(
context,
parsed.comment ?? "",
[],
parsed.sender ?? "",
showEmbeds: false,
embedMedia: false,
),
),
),
],
),
);