Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/blame/commit/2aaa9f669a0ba6855329ce63ae4e785dc70a5a69/Jellyfin.Api/Models/SyncPlayDtos/SeekRequestDto.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/Jellyfin.Api/Models/SyncPlayDtos/SeekRequestDto.cs

14 lines
297 B

namespace Jellyfin.Api.Models.SyncPlayDtos;
/// <summary>
/// Class SeekRequestDto.
/// </summary>
public class SeekRequestDto
{
/// <summary>
/// Gets or sets the position ticks.
/// </summary>
/// <value>The position ticks.</value>
public long PositionTicks { get; set; }
}