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

22 lines
553 B

using System.ComponentModel.DataAnnotations;
namespace Jellyfin.Api.Models.StartupDtos;
/// <summary>
/// Startup remote access dto.
/// </summary>
public class StartupRemoteAccessDto
{
/// <summary>
/// Gets or sets a value indicating whether enable remote access.
/// </summary>
[Required]
public bool EnableRemoteAccess { get; set; }
/// <summary>
/// Gets or sets a value indicating whether enable automatic port mapping.
/// </summary>
[Required]
public bool EnableAutomaticPortMapping { get; set; }
}