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/c0f5fe9bd3e973f081b3782db4513145207b7c7e/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; }
}