We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8b90d0 commit e694a0eCopy full SHA for e694a0e
1 file changed
src/main/js/bundles/mapapps-github-manager/BundleStore.js
@@ -55,7 +55,7 @@ async function fetchBundlesFromGitHub(target, user, topic) {
55
Accept: "application/vnd.github.mercy-preview+json"
56
}
57
});
58
- const filteredData = data.items.filter((item) => item.topics.includes("4x"));
+ const filteredData = data.items.filter((item) => item.topics.includes("4x") && item.archived === false);
59
return filteredData;
60
} catch (e) {
61
console.error(`Error fetching data from github ${url}:`, e);
0 commit comments