mirror of https://github.com/Radarr/Radarr
14 lines
395 B
C#
14 lines
395 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace NzbDrone.Core.Movies
|
|
{
|
|
public static class EnumerableExtensions
|
|
{
|
|
public static Movie FirstWithYear(this IEnumerable<Movie> query, int? year)
|
|
{
|
|
return year.HasValue ? query.FirstOrDefault(movie => movie.Year == year || movie.SecondaryYear == year) : query.FirstOrDefault();
|
|
}
|
|
}
|
|
}
|