fix: Send reply to voice messages

This commit is contained in:
Christian Kußowski 2026-01-31 18:50:12 +01:00
parent d98d80bfe7
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,
);
setState(() {
replyEvent = null;
});
room
.sendFileEvent(
file,
@ -737,6 +734,9 @@ class ChatController extends State<ChatPageWithRoom>
);
return null;
});
setState(() {
replyEvent = null;
});
return;
}