From 9907d352330f639a6e4a0c198c46c2a29e1ccc4b Mon Sep 17 00:00:00 2001 From: Mic Date: Fri, 13 Dec 2024 00:08:00 +0100 Subject: [PATCH] correctly calling isThunderbird128OrGreater --- js/mzta-utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/mzta-utils.js b/js/mzta-utils.js index 7070698a..7f4270d3 100644 --- a/js/mzta-utils.js +++ b/js/mzta-utils.js @@ -178,7 +178,7 @@ export function generateCallID(length = 10) { export async function getTagsList(){ let messageTags = {}; - if(isThunderbird128OrGreater()) { + if(await isThunderbird128OrGreater()) { messageTags = await browser.messages.tags.list(); } else { messageTags = await browser.messages.listTags();