This commit is contained in:
Bruno Garcia 2023-12-13 17:59:45 -05:00
Родитель 39b0c89477
Коммит 482f63ea3d
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -36,7 +36,7 @@ public class PackageController(NuGetTrendsContext context) : ControllerBase
[FromQuery] int months = 3)
{
if (! await context.PackageDownloads.
AnyAsync(p => p.PackageIdLowered.Equals(id, StringComparison.InvariantCultureIgnoreCase), cancellationToken))
AnyAsync(p => p.PackageIdLowered == id.ToLower(CultureInfo.InvariantCulture), cancellationToken))
{
return NotFound();
}