Change messageTags from object to array in getTagsList function

This commit is contained in:
Mic 2025-03-06 18:04:11 +01:00
parent 59d44e3077
commit 7ca21b08bf

View file

@ -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']})){