mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
added quality profile label
This commit is contained in:
parent
35af6ecdb6
commit
c4badd72bd
12 changed files with 22 additions and 40 deletions
|
@ -160,7 +160,7 @@ namespace NzbDrone.Core.Tv
|
|||
allEpisodes.AddRange(newList);
|
||||
allEpisodes.AddRange(updateList);
|
||||
|
||||
var groups = allEpisodes.GroupBy(e => new { e.SeriesId, e.AirDate }).Where(g => g.Count() > 1).ToList();
|
||||
var groups = allEpisodes.Where(c=>c.AirDate.HasValue).GroupBy(e => new { e.SeriesId, e.AirDate }).Where(g => g.Count() > 1).ToList();
|
||||
|
||||
foreach (var group in groups)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue