aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/LiveTv
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-11-02 12:11:04 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-11-02 12:11:04 -0400
commit4c1834c087cbfb06cd3111571dbc4c73d4ff6a0e (patch)
tree934dd0f910170771b7fcd099f659e4747fa4efe7 /Emby.Server.Implementations/LiveTv
parentfed5f9e89ba013f8e9b5af71377eb7ee12f51644 (diff)
parent008cea6984d4e4bbdfb0b893e4cf0b6c59cb9d69 (diff)
Merge branch 'master' of https://github.com/MediaBrowser/Emby
Diffstat (limited to 'Emby.Server.Implementations/LiveTv')
-rw-r--r--Emby.Server.Implementations/LiveTv/TunerHosts/LiveStream.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/LiveTv/TunerHosts/LiveStream.cs b/Emby.Server.Implementations/LiveTv/TunerHosts/LiveStream.cs
index 12695cd8e7..8620987355 100644
--- a/Emby.Server.Implementations/LiveTv/TunerHosts/LiveStream.cs
+++ b/Emby.Server.Implementations/LiveTv/TunerHosts/LiveStream.cs
@@ -44,7 +44,7 @@ namespace Emby.Server.Implementations.LiveTv.TunerHosts
EnableStreamSharing = true;
SharedStreamIds = new List<string>();
UniqueId = Guid.NewGuid().ToString("N");
- TempFilePath = Path.Combine(appPaths.TranscodingTempPath, UniqueId + ".ts");
+ TempFilePath = Path.Combine(appPaths.GetTranscodingTempPath(), UniqueId + ".ts");
}
public virtual Task Open(CancellationToken openCancellationToken)