aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Controllers/VideoHlsController.cs
diff options
context:
space:
mode:
authornyanmisaka <nst799610810@gmail.com>2020-11-19 23:04:44 +0800
committernyanmisaka <nst799610810@gmail.com>2020-11-19 23:04:44 +0800
commit20d6999d8c844f15aa7f9a2336bf201e81efb5e9 (patch)
treef79f8ff9fa5c93dfc86d1290b48de84ab07573ff /Jellyfin.Api/Controllers/VideoHlsController.cs
parent5ff08338d5a475d2975ecc6d4fe5222456368bd2 (diff)
minor changes
Diffstat (limited to 'Jellyfin.Api/Controllers/VideoHlsController.cs')
-rw-r--r--Jellyfin.Api/Controllers/VideoHlsController.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Controllers/VideoHlsController.cs b/Jellyfin.Api/Controllers/VideoHlsController.cs
index b151f85e2..5e35822bc 100644
--- a/Jellyfin.Api/Controllers/VideoHlsController.cs
+++ b/Jellyfin.Api/Controllers/VideoHlsController.cs
@@ -39,7 +39,7 @@ namespace Jellyfin.Api.Controllers
public class VideoHlsController : BaseJellyfinApiController
{
private const string DefaultEncoderPreset = "superfast";
- private readonly TranscodingJobType _transcodingJobType = TranscodingJobType.Hls;
+ private const TranscodingJobType _transcodingJobType = TranscodingJobType.Hls;
private readonly EncodingHelper _encodingHelper;
private readonly IDlnaManager _dlnaManager;