mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2025-04-05 07:28:08 +02:00
fix: speed up event redaction
Signed-off-by: TheOneWithTheBraid <the-one@with-the-braid.cf>
This commit is contained in:
parent
5ee4514997
commit
b6819aa400
@ -549,10 +549,11 @@ class ChatController extends State<Chat> {
|
||||
) ==
|
||||
OkCancelResult.ok;
|
||||
if (!confirmed) return;
|
||||
for (final event in selectedEvents) {
|
||||
await showFutureLoadingDialog(
|
||||
context: context,
|
||||
future: () async {
|
||||
await showFutureLoadingDialog(
|
||||
context: context,
|
||||
future: () => Future.wait(
|
||||
selectedEvents.map(
|
||||
(event) async {
|
||||
if (event.status.isSent) {
|
||||
if (event.canRedact) {
|
||||
await event.redactEvent();
|
||||
@ -569,8 +570,11 @@ class ChatController extends State<Chat> {
|
||||
} else {
|
||||
await event.remove();
|
||||
}
|
||||
});
|
||||
}
|
||||
},
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
setState(() {
|
||||
showEmojiPicker = false;
|
||||
selectedEvents.clear();
|
||||
|
Loading…
x
Reference in New Issue
Block a user