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/eb601e944cd392a8007b540ab5627977a37368c6/Jellyfin.Data/Entities/Chapter.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/Jellyfin.Data/Entities/Chapter.cs

25 lines
645 B

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Jellyfin.Data.Entities;
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
public class Chapter
{
public required Guid ItemId { get; set; }
public required BaseItemEntity Item { get; set; }
public required int ChapterIndex { get; set; }
public required long StartPositionTicks { get; set; }
public string? Name { get; set; }
public string? ImagePath { get; set; }
public DateTime? ImageDateModified { get; set; }
}