mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-20 17:14:42 +01:00
Fix suggestion
This commit is contained in:
@@ -149,12 +149,7 @@ namespace Emby.Server.Implementations.TV
|
||||
return allNextUp
|
||||
.Where(i =>
|
||||
{
|
||||
if (i.Item1 != DateTime.MinValue)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
return i.Item1 != DateTime.MinValue;
|
||||
})
|
||||
.Select(i => i.Item2())
|
||||
.Where(i => i != null);
|
||||
|
||||
Reference in New Issue
Block a user