aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-12-29 14:27:14 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-12-29 14:27:14 -0500
commit845895eae4ca8cc0ef64c00397a2c6c3c00c792e (patch)
treec2c1d68bf744e71d761c4419f0aa4df904775a9c
parent72887a1f6b6abc63f4a412d109241dc5b2ab6a54 (diff)
don't use tmp file
-rw-r--r--MediaBrowser.Api/Playback/Hls/BaseHlsService.cs1
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
{