We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0ef810 commit 5a0764eCopy full SHA for 5a0764e
1 file changed
src/NuGetGallery.Services/Storage/ContentObjectService.cs
@@ -49,8 +49,9 @@ await Refresh<SymbolsConfiguration>(ServicesConstants.ContentNames.SymbolsConfig
49
await Refresh<TyposquattingConfiguration>(ServicesConstants.ContentNames.TyposquattingConfiguration) ??
50
new TyposquattingConfiguration();
51
52
- var reposCache = await Refresh<IReadOnlyCollection<RepositoryInformation>>(ServicesConstants.ContentNames.NuGetPackagesGitHubDependencies) ??
53
- Array.Empty<RepositoryInformation>();
+ var reposCache =
+ await Refresh<IReadOnlyCollection<RepositoryInformation>>(ServicesConstants.ContentNames.NuGetPackagesGitHubDependencies) ??
54
+ Array.Empty<RepositoryInformation>();
55
56
GitHubUsageConfiguration = new GitHubUsageConfiguration(reposCache);
57
}
0 commit comments