diff options
| author | cvium <clausvium@gmail.com> | 2021-09-10 12:53:45 +0200 |
|---|---|---|
| committer | cvium <clausvium@gmail.com> | 2021-09-10 12:53:45 +0200 |
| commit | ff328fefc57461bd999210b3059b997e7f9842ac (patch) | |
| tree | 6d39b1a4f4f331e885d7ede7ab9572888b8df063 /Jellyfin.Api/Controllers/LiveTvController.cs | |
| parent | 026a7af0e8cc15f889ba94079c8bc9566a74d505 (diff) | |
Replace GetDirectStreamProviderByUniqueId with GetLiveStreamInfoByUniqueId
Diffstat (limited to 'Jellyfin.Api/Controllers/LiveTvController.cs')
| -rw-r--r-- | Jellyfin.Api/Controllers/LiveTvController.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Controllers/LiveTvController.cs b/Jellyfin.Api/Controllers/LiveTvController.cs index 3f68b267f..b131530c9 100644 --- a/Jellyfin.Api/Controllers/LiveTvController.cs +++ b/Jellyfin.Api/Controllers/LiveTvController.cs @@ -1201,7 +1201,7 @@ namespace Jellyfin.Api.Controllers [ProducesVideoFile] public ActionResult GetLiveStreamFile([FromRoute, Required] string streamId, [FromRoute, Required] string container) { - var liveStreamInfo = _mediaSourceManager.GetLiveStreamInfo(streamId); + var liveStreamInfo = _mediaSourceManager.GetLiveStreamInfoByUniqueId(streamId); if (liveStreamInfo == null) { return NotFound(); |
