2
0
Эх сурвалжийг харах

reduce remote stream buffer time

Luke Pulverenti 11 жил өмнө
parent
commit
8369f16d66

+ 1 - 1
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);
             }
         }