aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Playback/BaseStreamingService.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-01-02 16:21:38 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-01-02 16:21:38 -0500
commit8369f16d667abf324324d9c567bff445a62013e1 (patch)
treebdc717a76c41229671337bfe121c3c9886ec2490 /MediaBrowser.Api/Playback/BaseStreamingService.cs
parenta9f243e8c49f3715ce61c82799042abf75b6e72a (diff)
reduce remote stream buffer time
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 5009addee..718c142a4 100644
--- a/MediaBrowser.Api/Playback/BaseStreamingService.cs
+++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs
@@ -759,7 +759,7 @@ namespace MediaBrowser.Api.Playback
// This is arbitrary, but add a little buffer time when internet streaming
if (state.IsRemote)
{
- await Task.Delay(4000).ConfigureAwait(false);
+ await Task.Delay(3000).ConfigureAwait(false);
}
}