show reactions inline in non-message events that are in bubbles, e.g. stickers

Fixes #59.
This commit is contained in:
Henry Hiles 2026-08-05 16:00:55 -04:00
commit d1c2b2dd0a
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs
2 changed files with 5 additions and 3 deletions

View file

@ -213,7 +213,10 @@ class EventRenderer extends HookConsumerWidget {
),
...[
if (event.content is! MessageContent) ReactionRow(event),
if (event.content is! MessageContent &&
event.content is! StickerContent &&
event.content is! EncryptedContent)
ReactionRow(event),
if (event.sendError != null && event.sendError != "not sent")
Padding(