Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
wsxiaoys committed Apr 26, 2024
1 parent 7c800ed commit e2cc2e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,10 +141,7 @@ impl GithubRepositoryService for GithubRepositoryProviderServiceImpl {

let mut repos = self
.list_repositories(vec![], None, None, None, None)
.await?
.into_iter()
.filter(|x| x.active)
.collect();
.await?;

deduplicate_github_repositories(&mut repos);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,10 +141,7 @@ impl GitlabRepositoryService for GitlabRepositoryProviderServiceImpl {

let mut repos = self
.list_repositories(vec![], None, None, None, None)
.await?
.into_iter()
.filter(|x| x.active)
.collect();
.await?;

deduplicate_gitlab_repositories(&mut repos);

Expand Down

0 comments on commit e2cc2e9

Please sign in to comment.