diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-11-23 18:40:02 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-11-23 18:40:02 -0500 |
| commit | 4f4bb2ebfbfcc88176b491d9d3858a828c3192d2 (patch) | |
| tree | 883599fb78be2cdebab71bd406aff65be6a2ee3a | |
| parent | 060b2ed58bf517676604652f431211dc6c18bbb2 (diff) | |
roku fix
| -rw-r--r-- | MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs b/MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs index 4d7a10f02..5be6ca545 100644 --- a/MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs +++ b/MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs @@ -759,7 +759,7 @@ namespace MediaBrowser.Api.Playback.Hls foreach (var length in segmentLengths) { - builder.AppendLine("#EXTINF:" + length.ToString("0.000000", UsCulture) + ","); + builder.AppendLine("#EXTINF:" + length.ToString("0.0000", UsCulture) + ","); builder.AppendLine(string.Format("hlsdynamic/{0}/{1}{2}{3}", |
