diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2021-11-09 19:53:21 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-09 19:53:21 +0100 |
| commit | c3523e7cf7cd04a3a6ee146562a23d6491f272ff (patch) | |
| tree | b0171bbbce502bfd6f769b0f47c18a9b8018b6be /Emby.Server.Implementations/LiveTv/TunerHosts/SharedHttpStream.cs | |
| parent | c50c9c3dbfcd61fd9a3a5aa682f446e0a395ac56 (diff) | |
| parent | 1c47211a9eacff0b7a2fafe80c39a9650e17a357 (diff) | |
Merge pull request #5905 from BaronGreenback/TVFix
Fix for Livetv and DLNA when bind interfaces specified.
Diffstat (limited to 'Emby.Server.Implementations/LiveTv/TunerHosts/SharedHttpStream.cs')
| -rw-r--r-- | Emby.Server.Implementations/LiveTv/TunerHosts/SharedHttpStream.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/LiveTv/TunerHosts/SharedHttpStream.cs b/Emby.Server.Implementations/LiveTv/TunerHosts/SharedHttpStream.cs index 3b69e55b0..b1ce7b2b3 100644 --- a/Emby.Server.Implementations/LiveTv/TunerHosts/SharedHttpStream.cs +++ b/Emby.Server.Implementations/LiveTv/TunerHosts/SharedHttpStream.cs @@ -83,7 +83,7 @@ namespace Emby.Server.Implementations.LiveTv.TunerHosts // OpenedMediaSource.Path = tempFile; // OpenedMediaSource.ReadAtNativeFramerate = true; - MediaSource.Path = _appHost.GetLoopbackHttpApiUrl() + "/LiveTv/LiveStreamFiles/" + UniqueId + "/stream.ts"; + MediaSource.Path = _appHost.GetApiUrlForLocalAccess() + "/LiveTv/LiveStreamFiles/" + UniqueId + "/stream.ts"; MediaSource.Protocol = MediaProtocol.Http; // OpenedMediaSource.Path = TempFilePath; |
