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/d5fdb9c3a728ff8204c14c171ee4bdb3c992b02f/MediaBrowser.Model/MediaSegments/MediaSegmentDto.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/MediaSegments/MediaSegmentDto.cs

36 lines
826 B

using System;
using Jellyfin.Data.Enums;
namespace MediaBrowser.Model.MediaSegments;
/// <summary>
/// Api model for MediaSegment's.
/// </summary>
public class MediaSegmentDto
{
/// <summary>
/// Gets or sets the id of the media segment.
/// </summary>
public Guid Id { get; set; }
/// <summary>
/// Gets or sets the id of the associated item.
/// </summary>
public Guid ItemId { get; set; }
/// <summary>
/// Gets or sets the type of content this segment defines.
/// </summary>
public MediaSegmentType Type { get; set; }
/// <summary>
/// Gets or sets the start of the segment.
/// </summary>
public long StartTicks { get; set; }
/// <summary>
/// Gets or sets the end of the segment.
/// </summary>
public long EndTicks { get; set; }
}