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

16 lines
379 B

using System;
using System.Collections.Generic;
namespace Jellyfin.Api.Models.LibraryDtos;
/// <summary>
/// Media Update Info Dto.
/// </summary>
public class MediaUpdateInfoDto
{
/// <summary>
/// Gets or sets the list of updates.
/// </summary>
public IReadOnlyList<MediaUpdateInfoPathDto> Updates { get; set; } = Array.Empty<MediaUpdateInfoPathDto>();
}