mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 09:59:06 -07:00
Fix suggestion
This commit is contained in:
parent
c196ad3351
commit
0dda909a60
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user