aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Controllers/LiveTvController.cs
diff options
context:
space:
mode:
authorcvium <clausvium@gmail.com>2021-09-10 10:03:42 +0200
committercvium <clausvium@gmail.com>2021-09-10 10:03:42 +0200
commit1a5a74d2a95506249cf071c659e3c6cf01f28f78 (patch)
tree42449f2310821dc6287a8ca5747e190b90a85da6 /Jellyfin.Api/Controllers/LiveTvController.cs
parentf3573b061c4d9eb869316ce3de320fd8803aeef8 (diff)
Remove more unused args
Diffstat (limited to 'Jellyfin.Api/Controllers/LiveTvController.cs')
-rw-r--r--Jellyfin.Api/Controllers/LiveTvController.cs2
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));
}