Skip to content

Commit e694a0e

Browse files
committed
Update filter to exclude archived repositories
1 parent f8b90d0 commit e694a0e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/js/bundles/mapapps-github-manager/BundleStore.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ async function fetchBundlesFromGitHub(target, user, topic) {
5555
Accept: "application/vnd.github.mercy-preview+json"
5656
}
5757
});
58-
const filteredData = data.items.filter((item) => item.topics.includes("4x"));
58+
const filteredData = data.items.filter((item) => item.topics.includes("4x") && item.archived === false);
5959
return filteredData;
6060
} catch (e) {
6161
console.error(`Error fetching data from github ${url}:`, e);

0 commit comments

Comments
 (0)