diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-27 12:10:56 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-27 12:10:56 -0400 |
| commit | c70f1047f7433102c54004b0f3c4d44a3b859882 (patch) | |
| tree | b3ad947a1e1c70dbf0bbb7a2556f7dcec918fa10 | |
| parent | 36d4e15860da3295dbb180ce6aa8ba180ffb26f9 (diff) | |
fixes #367 - HLS Stream Fails
| -rw-r--r-- | MediaBrowser.Api/ApiEntryPoint.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/ApiEntryPoint.cs b/MediaBrowser.Api/ApiEntryPoint.cs index 9737fafca5..52707c3c6c 100644 --- a/MediaBrowser.Api/ApiEntryPoint.cs +++ b/MediaBrowser.Api/ApiEntryPoint.cs @@ -178,7 +178,7 @@ namespace MediaBrowser.Api if (job.ActiveRequestCount == 0) { - var timerDuration = type == TranscodingJobType.Progressive ? 1000 : 30000; + var timerDuration = type == TranscodingJobType.Progressive ? 1000 : 60000; if (job.KillTimer == null) { |
