Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/f3da5dc8b7fef7e5fdeddff941c6d99063a1fd97 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fix Authorize attributes

pull/2931/head
crobibero 5 years ago
parent 466e20ea8c
commit f3da5dc8b7

@ -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;

Loading…
Cancel
Save