From 44077b4f5c34ed7f23888a9cb438e0189134ff65 Mon Sep 17 00:00:00 2001 From: Shadowghost Date: Fri, 20 Jan 2023 01:27:39 +0100 Subject: [PATCH] Apply review suggestions --- Jellyfin.Api/Controllers/LiveTvController.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Jellyfin.Api/Controllers/LiveTvController.cs b/Jellyfin.Api/Controllers/LiveTvController.cs index 4810d9da81..bba67663d4 100644 --- a/Jellyfin.Api/Controllers/LiveTvController.cs +++ b/Jellyfin.Api/Controllers/LiveTvController.cs @@ -1156,7 +1156,6 @@ namespace Jellyfin.Api.Controllers /// or a if recording not found. /// [HttpGet("LiveRecordings/{recordingId}/stream")] - [Authorize(Policy = Policies.LiveTvAccess)] [ProducesResponseType(StatusCodes.Status200OK)] [ProducesResponseType(StatusCodes.Status404NotFound)] [ProducesVideoFile] @@ -1185,7 +1184,6 @@ namespace Jellyfin.Api.Controllers /// or a if stream not found. /// [HttpGet("LiveStreamFiles/{streamId}/stream.{container}")] - [Authorize(Policy = Policies.LiveTvAccess)] [ProducesResponseType(StatusCodes.Status200OK)] [ProducesResponseType(StatusCodes.Status404NotFound)] [ProducesVideoFile]