diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-03-31 14:50:08 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-03-31 14:50:08 -0400 |
| commit | 5965afecde2536c0a2ec566fd6afdb21add8aa50 (patch) | |
| tree | 231e3065797de3d65bee6b53b32097e00ddf8d87 /MediaBrowser.Api/Playback/TranscodingThrottler.cs | |
| parent | a025f4eefaf43c27f33521239d99c47d292728f5 (diff) | |
live tv fix
Diffstat (limited to 'MediaBrowser.Api/Playback/TranscodingThrottler.cs')
| -rw-r--r-- | MediaBrowser.Api/Playback/TranscodingThrottler.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/Playback/TranscodingThrottler.cs b/MediaBrowser.Api/Playback/TranscodingThrottler.cs index ff79bb48f..58cfa086e 100644 --- a/MediaBrowser.Api/Playback/TranscodingThrottler.cs +++ b/MediaBrowser.Api/Playback/TranscodingThrottler.cs @@ -42,7 +42,7 @@ namespace MediaBrowser.Api.Playback var options = GetOptions(); - if (/*options.EnableThrottling &&*/ IsThrottleAllowed(_job, options.ThrottleThresholdSeconds)) + if (options.EnableThrottling && IsThrottleAllowed(_job, options.ThrottleThresholdSeconds)) { PauseTranscoding(); } |
