diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-04-07 13:51:14 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-04-07 13:51:14 -0400 |
| commit | 84ec2aab951ced678876ebc53f43cc85f83012d7 (patch) | |
| tree | dac9d00648eead3fa9640469261184a272cbd9bd /MediaBrowser.Api/Playback/TranscodingThrottler.cs | |
| parent | 3e9efeb44f716d9211ffe37f9dac1fa42bafd9e1 (diff) | |
fix video probing
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(); } |
