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

24 lines
600 B

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