aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Playback
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-03-20 16:06:04 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-03-20 16:06:04 -0400
commite068e84ab6c2bdee49c41ceef50cbcedd8bcb355 (patch)
tree256312e8b1ad75db9133116b62ea71d74eed4e2b /MediaBrowser.Api/Playback
parent6df78dcb342bd38792cde75498292e3f6ef15fd7 (diff)
incorporate file length into image cache tag
Diffstat (limited to 'MediaBrowser.Api/Playback')
-rw-r--r--MediaBrowser.Api/Playback/Hls/BaseHlsService.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/MediaBrowser.Api/Playback/Hls/BaseHlsService.cs b/MediaBrowser.Api/Playback/Hls/BaseHlsService.cs
index 8541a60ef5..d4c0ddc70e 100644
--- a/MediaBrowser.Api/Playback/Hls/BaseHlsService.cs
+++ b/MediaBrowser.Api/Playback/Hls/BaseHlsService.cs
@@ -107,8 +107,7 @@ namespace MediaBrowser.Api.Playback.Hls
throw;
}
- var waitCount = isLive ? 2 : 2;
- await WaitForMinimumSegmentCount(playlist, waitCount, cancellationTokenSource.Token).ConfigureAwait(false);
+ await WaitForMinimumSegmentCount(playlist, 3, cancellationTokenSource.Token).ConfigureAwait(false);
}
}
finally