From 1baac228c05b085afb04b8173b86174857732e18 Mon Sep 17 00:00:00 2001 From: mic Date: Sat, 18 Apr 2026 23:06:34 +0200 Subject: [PATCH] addtags popup menu fixed --- mzta-background.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mzta-background.js b/mzta-background.js index 38914883..5352881e 100644 --- a/mzta-background.js +++ b/mzta-background.js @@ -530,7 +530,7 @@ messenger.runtime.onMessage.addListener((message, sender, sendResponse) => { break; case 'shortcut_do_prompt': taLog.log("Executing shortcut, promptId: " + message.promptId); - if (specialContextMenuActions[message.promptId]) { + if (message.promptId !== 'prompt_add_tags' && specialContextMenuActions[message.promptId]) { //TODO Add an option here if you want the user to decide to use the autotagging also in the popup menu async function _shortcut_special() { let tabId = message.tabId; if (!tabId) {