From 7d2c38505e22ecf69e7ea99b62c988e68572b3c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20St=C3=B8vring?= Date: Thu, 25 Jul 2024 12:19:51 +0200 Subject: [PATCH] Allows empty HIDDEN_REPOSITORIES --- src/composition.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/composition.ts b/src/composition.ts index a78d6d82..88c7316c 100644 --- a/src/composition.ts +++ b/src/composition.ts @@ -160,7 +160,7 @@ export const projectRepository = new ProjectRepository({ export const projectDataSource = new CachingProjectDataSource({ dataSource: new GitHubProjectDataSource({ repositoryDataSource: new FilteringGitHubRepositoryDataSource({ - hiddenRepositories: listFromCommaSeparatedString(env.getOrThrow("HIDDEN_REPOSITORIES")), + hiddenRepositories: listFromCommaSeparatedString(env.get("HIDDEN_REPOSITORIES")), dataSource: new GitHubRepositoryDataSource({ loginsDataSource: new GitHubLoginDataSource({ graphQlClient: userGitHubClient