diff options
| author | Luke <luke.pulverenti@gmail.com> | 2017-10-30 00:53:37 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-10-30 00:53:37 -0400 |
| commit | 135ea765b932f00529006da727b418d87ac618b4 (patch) | |
| tree | cc1682ad53019390b54d9a7310506f5271a71dbc /Emby.Server.Implementations/LiveTv | |
| parent | 1dcb3a1369c41f292b1cb0f9ac32b100f30c2485 (diff) | |
| parent | 74136371b5d2f76fd34feadbdfc34d4760cccbda (diff) | |
Merge pull request #2988 from MediaBrowser/dev
Dev
Diffstat (limited to 'Emby.Server.Implementations/LiveTv')
| -rw-r--r-- | Emby.Server.Implementations/LiveTv/TunerHosts/LiveStream.cs | 2 |
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) |
