aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Playback/BaseStreamingService.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-07-08 20:46:11 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-07-08 20:46:11 -0400
commit651d483dec489a84bf93fe900e537cc7be9c4cbd (patch)
tree58933f9a84a82e1a1db89c7d7dfa975de7575700 /MediaBrowser.Api/Playback/BaseStreamingService.cs
parentc02e917f5657db4bd76fc6ca17c535fc441c641c (diff)
rework nfo savers
Diffstat (limited to 'MediaBrowser.Api/Playback/BaseStreamingService.cs')
-rw-r--r--MediaBrowser.Api/Playback/BaseStreamingService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs
index d8e3ee75d..094a9034d 100644
--- a/MediaBrowser.Api/Playback/BaseStreamingService.cs
+++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs
@@ -953,7 +953,7 @@ namespace MediaBrowser.Api.Playback
// This is arbitrary, but add a little buffer time when internet streaming
if (state.InputProtocol != MediaProtocol.File)
{
- await Task.Delay(3000, cancellationTokenSource.Token).ConfigureAwait(false);
+ await Task.Delay(2500, cancellationTokenSource.Token).ConfigureAwait(false);
}
}