aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-06-27 12:10:56 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-06-27 12:10:56 -0400
commitc70f1047f7433102c54004b0f3c4d44a3b859882 (patch)
treeb3ad947a1e1c70dbf0bbb7a2556f7dcec918fa10
parent36d4e15860da3295dbb180ce6aa8ba180ffb26f9 (diff)
fixes #367 - HLS Stream Fails
-rw-r--r--MediaBrowser.Api/ApiEntryPoint.cs2
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)
{