Merge pull request #1088 from ilkecan/fix-gitlab-prefetcher-typo

nur.prefetch: use `GitlabPrefetcher` for `GITLAB`
This commit is contained in:
Gavin John 2026-03-04 22:17:18 +00:00 committed by GitHub
commit e6c069af62
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -143,6 +143,6 @@ def prefetcher_for(repo: Repo) -> GitPrefetcher:
case RepoType.GITHUB:
return GithubPrefetcher(repo)
case RepoType.GITLAB:
return GithubPrefetcher(repo)
return GitlabPrefetcher(repo)
case _:
return GitPrefetcher(repo)