diff options
| author | cvium <clausvium@gmail.com> | 2021-09-10 10:03:42 +0200 |
|---|---|---|
| committer | cvium <clausvium@gmail.com> | 2021-09-10 10:03:42 +0200 |
| commit | 1a5a74d2a95506249cf071c659e3c6cf01f28f78 (patch) | |
| tree | 42449f2310821dc6287a8ca5747e190b90a85da6 /Jellyfin.Api/Controllers/LiveTvController.cs | |
| parent | f3573b061c4d9eb869316ce3de320fd8803aeef8 (diff) | |
Remove more unused args
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 c3856b882..3f68b267f 100644 --- a/Jellyfin.Api/Controllers/LiveTvController.cs +++ b/Jellyfin.Api/Controllers/LiveTvController.cs @@ -1207,7 +1207,7 @@ namespace Jellyfin.Api.Controllers return NotFound(); } - var liveStream = new ProgressiveFileStream(liveStreamInfo.GetStream(), null, _transcodingJobHelper); + var liveStream = new ProgressiveFileStream(liveStreamInfo.GetStream()); return new FileStreamResult(liveStream, MimeTypes.GetMimeType("file." + container)); } |
