fix delay bug

This commit is contained in:
qcrao
2023-09-11 17:38:29 +08:00
parent 703544c34a
commit 72d3b56091
2 changed files with 2 additions and 2 deletions

View File

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