aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-10-20 02:36:34 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-10-20 02:36:34 -0400
commitccaf2f43a679dca056ef9512b9b260735d357948 (patch)
tree6fde4526efd41dcf7d68f248eeb94d292d160124 /MediaBrowser.Server.Implementations
parentb1f604b5e741709301f12374550dc6f4328d1e8d (diff)
exclude mpeg4 with level -99 from vaapi
Diffstat (limited to 'MediaBrowser.Server.Implementations')
-rw-r--r--MediaBrowser.Server.Implementations/LiveTv/LiveTvManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/LiveTv/LiveTvManager.cs b/MediaBrowser.Server.Implementations/LiveTv/LiveTvManager.cs
index 7c72363b0..902afb200 100644
--- a/MediaBrowser.Server.Implementations/LiveTv/LiveTvManager.cs
+++ b/MediaBrowser.Server.Implementations/LiveTv/LiveTvManager.cs
@@ -1947,7 +1947,7 @@ namespace MediaBrowser.Server.Implementations.LiveTv
}
else
{
- timers = timers.Where(i => !(i.Item1.Status == RecordingStatus.New));
+ timers = timers.Where(i => i.Item1.Status != RecordingStatus.New);
}
}