From d2f5551cba101af37d32ae95752bab8731939960 Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Sat, 9 Oct 2021 14:28:02 +0200 Subject: [PATCH 1/2] Fix handling of federated extensions --- app/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/index.js b/app/index.js index a5446fd1..d942cbbd 100644 --- a/app/index.js +++ b/app/index.js @@ -297,7 +297,7 @@ async function main() { federatedExtensions.forEach(p => { if (p.status === 'fulfilled') { for (let plugin of activePlugins(p.value)) { - baseMods.push(plugin); + mods.push(plugin); } } else { console.error(p.reason); From 4251386949c7a807f1c2850a674eab037f024465 Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Sat, 9 Oct 2021 14:30:57 +0200 Subject: [PATCH 2/2] Remove TODO --- app/index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/app/index.js b/app/index.js index d942cbbd..04c82919 100644 --- a/app/index.js +++ b/app/index.js @@ -290,7 +290,6 @@ async function main() { }); // Add the federated extensions. - // TODO: Add support for disabled extensions const federatedExtensions = await Promise.allSettled( federatedExtensionPromises );