Skip to content

Commit

Permalink
fix: get all repos return wrong repo url
Browse files Browse the repository at this point in the history
  • Loading branch information
Misaka-L committed Aug 30, 2024
1 parent 71b340b commit c554a5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion VPMReposSynchronizer.Core/Services/RepoBrowserService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public async ValueTask<BrowserRepo[]> GetAllReposAsync()
browserRepo.SyncStatus = repoSyncStatuses.TryGetValue(browserRepo.ApiId, out var syncStatus)
? syncStatus
: null;
browserRepo.RepoUrl = GetRepoUrl(browserRepo.UpstreamId);
browserRepo.RepoUrl = GetRepoUrl(browserRepo.ApiId);
}

return browserRepos;
Expand Down

0 comments on commit c554a5b

Please sign in to comment.