We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 974ec1c commit dfc76cfCopy full SHA for dfc76cf
express/frontend/src/lib/ioBroker.ts
@@ -77,7 +77,11 @@ export async function getMyAdapterRepos(
77
getLatest(),
78
]);
79
return repos.filter((repo) => {
80
- if (!repo.name.startsWith("ioBroker.")) {
+ if (
81
+ !repo.name.startsWith("ioBroker.") ||
82
+ repo.archived ||
83
+ repo.private
84
+ ) {
85
return false;
86
}
87
0 commit comments