From 7ca21b08bf6f6dcc5e77b2de018e486d66592dea Mon Sep 17 00:00:00 2001 From: Mic Date: Thu, 6 Mar 2025 18:04:11 +0100 Subject: [PATCH] Change messageTags from object to array in getTagsList function --- 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 4796e042..a4f6140b 100644 --- a/js/mzta-utils.js +++ b/js/mzta-utils.js @@ -203,7 +203,7 @@ export function generateCallID(length = 10) { } export async function getTagsList(){ - let messageTags = {}; + let messageTags = []; if(await isThunderbird128OrGreater()) { // without the tags related permissions, we can't get the tags list if(await browser.permissions.contains({permissions: ['messagesTagsList']})){