Explorar el Código

Fix Authorize attributes

crobibero hace 5 años
padre
commit
177339e8d5
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      Jellyfin.Api/Controllers/AttachmentsController.cs

+ 2 - 2
Jellyfin.Api/Controllers/AttachmentsController.cs

@@ -6,7 +6,7 @@ using System.Threading.Tasks;
 using MediaBrowser.Common.Extensions;
 using MediaBrowser.Controller.Library;
 using MediaBrowser.Controller.MediaEncoding;
-using MediaBrowser.Controller.Net;
+using Microsoft.AspNetCore.Authorization;
 using Microsoft.AspNetCore.Http;
 using Microsoft.AspNetCore.Mvc;
 
@@ -16,7 +16,7 @@ namespace Jellyfin.Api.Controllers
     /// Attachments controller.
     /// </summary>
     [Route("Videos")]
-    [Authenticated]
+    [Authorize]
     public class AttachmentsController : Controller
     {
         private readonly ILibraryManager _libraryManager;