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/UserViewDtos/SpecialViewOptionDto.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/Jellyfin.Api/Models/UserViewDtos/SpecialViewOptionDto.cs

18 lines
369 B

namespace Jellyfin.Api.Models.UserViewDtos;
/// <summary>
/// Special view option dto.
/// </summary>
public class SpecialViewOptionDto
{
/// <summary>
/// Gets or sets view option name.
/// </summary>
public string? Name { get; set; }
/// <summary>
/// Gets or sets view option id.
/// </summary>
public string? Id { get; set; }
}