From 02787e2f25584c736b93efbbfeac58b753aa1197 Mon Sep 17 00:00:00 2001 From: Guido Kraemer Date: Fri, 19 Dec 2025 17:41:36 +0100 Subject: [PATCH] Fix context menu ID typos --- mzta-background.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mzta-background.js b/mzta-background.js index 5ceb483e..4ef33580 100644 --- a/mzta-background.js +++ b/mzta-background.js @@ -923,10 +923,10 @@ function setupStorageChangeListener() { if (changes.summarize) { if (changes.summarize.newValue){ if (prefs_init.summarize_context_menu){ - addContextMenu(contextMenuID_Summary); + addContextMenu(contextMenuID_Summarize); } } else { - removeContextMenu(contextMenuID_Summary); + removeContextMenu(contextMenuID_Summarize); } } reload_pref_init(); @@ -993,7 +993,7 @@ function addContextMenuItems() { // Add Context menu: Summarize if(prefs_init.summarize && prefs_init.summarize_context_menu && checkAPIIntegration(prefs_init.connection_type && prefs_init.summarize_use_specific_integration, prefs_init.summarize_connection_type)) { console.log("adding summarize to context menu") - addContextMenu(contextMenuID_Summariz); + addContextMenu(contextMenuID_Summarize); } }