diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-12-29 14:27:14 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-12-29 14:27:14 -0500 |
| commit | 845895eae4ca8cc0ef64c00397a2c6c3c00c792e (patch) | |
| tree | c2c1d68bf744e71d761c4419f0aa4df904775a9c | |
| parent | 72887a1f6b6abc63f4a412d109241dc5b2ab6a54 (diff) | |
don't use tmp file
| -rw-r--r-- | MediaBrowser.Api/Playback/Hls/BaseHlsService.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/MediaBrowser.Api/Playback/Hls/BaseHlsService.cs b/MediaBrowser.Api/Playback/Hls/BaseHlsService.cs index 84f395518..17a0eeb8e 100644 --- a/MediaBrowser.Api/Playback/Hls/BaseHlsService.cs +++ b/MediaBrowser.Api/Playback/Hls/BaseHlsService.cs @@ -223,6 +223,7 @@ namespace MediaBrowser.Api.Playback.Hls protected Stream GetPlaylistFileStream(string path) { var tmpPath = path + ".tmp"; + tmpPath = path; try { |
