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/9d4417eee300f3aaceead992c996cf2f58fc0a0d/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

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