1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-02-23 14:41:27 +00:00

New: Improve All Series call by using dictionary for stats iteration

This commit is contained in:
Qstick 2024-01-18 18:51:43 -06:00 committed by Mark McDowall
parent 2dbf5b5a71
commit e792db4d33

View file

@ -113,7 +113,7 @@ namespace Sonarr.Api.V3.Series
}
MapCoversToLocal(seriesResources.ToArray());
LinkSeriesStatistics(seriesResources, seriesStats);
LinkSeriesStatistics(seriesResources, seriesStats.ToDictionary(x => x.SeriesId));
PopulateAlternateTitles(seriesResources);
seriesResources.ForEach(LinkRootFolderPath);
@ -229,17 +229,14 @@ namespace Sonarr.Api.V3.Series
LinkSeriesStatistics(resource, _seriesStatisticsService.SeriesStatistics(resource.Id));
}
private void LinkSeriesStatistics(List<SeriesResource> resources, List<SeriesStatistics> seriesStatistics)
private void LinkSeriesStatistics(List<SeriesResource> resources, Dictionary<int, SeriesStatistics> seriesStatistics)
{
foreach (var series in resources)
{
var stats = seriesStatistics.SingleOrDefault(ss => ss.SeriesId == series.Id);
if (stats == null)
if (seriesStatistics.TryGetValue(series.Id, out var stats))
{
continue;
LinkSeriesStatistics(series, stats);
}
LinkSeriesStatistics(series, stats);
}
}