From f554ed469586b0ae42e6475ebe7d31b7a35247cf Mon Sep 17 00:00:00 2001 From: Oleh Bespalov Date: Tue, 4 Mar 2025 13:36:31 +0100 Subject: [PATCH] Fix: unable to delete unread conversation --- bulkDeleteConversations.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bulkDeleteConversations.js b/bulkDeleteConversations.js index 4635f5d..22760b9 100644 --- a/bulkDeleteConversations.js +++ b/bulkDeleteConversations.js @@ -62,7 +62,7 @@ async function deleteConversation(checkbox) { console.log("conversationElement", conversationElement); - // Look for draggable element within the conversation element + // Look for interactive element within the conversation element const interactiveElement = conversationElement.querySelector("[draggable=\"true\"]"); if (!interactiveElement) { console.log("Skipping conversation - no interactive elements found");