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/a5ae5600cedca1aa22491a05c235189219dd2a17/Jellyfin.Api/Models/SyncPlayDtos/NextItemRequestDto.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/Jellyfin.Api/Models/SyncPlayDtos/NextItemRequestDto.cs

24 lines
540 B

using System;
namespace Jellyfin.Api.Models.SyncPlayDtos;
/// <summary>
/// Class NextItemRequestDto.
/// </summary>
public class NextItemRequestDto
{
/// <summary>
/// Initializes a new instance of the <see cref="NextItemRequestDto"/> class.
/// </summary>
public NextItemRequestDto()
{
PlaylistItemId = Guid.Empty;
}
/// <summary>
/// Gets or sets the playing item identifier.
/// </summary>
/// <value>The playing item identifier.</value>
public Guid PlaylistItemId { get; set; }
}