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/78e8eae5adc3744fc2a4c86152bac42ce40b4960/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; }
}