From f022bce63825326484adf584829d26251bc5fcfa Mon Sep 17 00:00:00 2001 From: mic Date: Wed, 29 Jan 2025 22:41:01 +0100 Subject: [PATCH] double await fixed --- mzta-background.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mzta-background.js b/mzta-background.js index d943ecf3..b837dd92 100644 --- a/mzta-background.js +++ b/mzta-background.js @@ -596,7 +596,7 @@ async function doGetCalendarEvent(get_calendar_event) { } async function reload_pref_init(){ - prefs_init = await await browser.storage.sync.get({do_debug: false, add_tags: true, get_calendar_event: true, connection_type: 'chatgpt_web'}); + prefs_init = await browser.storage.sync.get({do_debug: false, add_tags: true, get_calendar_event: true, connection_type: 'chatgpt_web'}); }