add delay after delete one conversation

This commit is contained in:
qcrao
2023-09-03 23:01:33 +08:00
parent 3a8f1268bc
commit 04ad5b6d30

View File

@@ -11,6 +11,7 @@ async function bulkDeleteConversations() {
// 使用 for 循环按顺序删除选中的对话 // 使用 for 循环按顺序删除选中的对话
for (const element of selectedConversations) { for (const element of selectedConversations) {
delay(100);
await deleteConversation(element); await deleteConversation(element);
} }
} }