Browse Source

update osd

Luke Pulverenti 8 years ago
parent
commit
352074acd4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      MediaBrowser.Api/Playback/Hls/BaseHlsService.cs

+ 1 - 1
MediaBrowser.Api/Playback/Hls/BaseHlsService.cs

@@ -103,7 +103,7 @@ namespace MediaBrowser.Api.Playback.Hls
                             throw;
                         }
 
-                        var waitForSegments = state.SegmentLength >= 10 ? 2 : (state.SegmentLength > 3 || !isLive ? 3 : 3);
+                        var waitForSegments = state.SegmentLength >= 10 ? 2 : 3;
                         await WaitForMinimumSegmentCount(playlist, waitForSegments, cancellationTokenSource.Token).ConfigureAwait(false);
                     }
                 }