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

14 lines
353 B

namespace Jellyfin.Api.Models.SyncPlayDtos;
/// <summary>
/// Class IgnoreWaitRequestDto.
/// </summary>
public class IgnoreWaitRequestDto
{
/// <summary>
/// Gets or sets a value indicating whether the client should be ignored.
/// </summary>
/// <value>The client group-wait status.</value>
public bool IgnoreWait { get; set; }
}