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/b92880a18b4c922ff830783f93b0966ef1f64a6f/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

15 lines
343 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; }
}
}