fix: Send reply to voice messages

This commit is contained in:
Christian Kußowski 2026-01-31 18:50:12 +01:00
commit f38cee0322
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652

View file

@ -714,9 +714,6 @@ class ChatController extends State<ChatPageWithRoom>
name: fileName ?? audioFile.path, name: fileName ?? audioFile.path,
); );
setState(() {
replyEvent = null;
});
room room
.sendFileEvent( .sendFileEvent(
file, file,
@ -737,6 +734,9 @@ class ChatController extends State<ChatPageWithRoom>
); );
return null; return null;
}); });
setState(() {
replyEvent = null;
});
return; return;
} }