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

16 lines
352 B

using MediaBrowser.Model.SyncPlay;
namespace Jellyfin.Api.Models.SyncPlayDtos;
/// <summary>
/// Class SetShuffleModeRequestDto.
/// </summary>
public class SetShuffleModeRequestDto
{
/// <summary>
/// Gets or sets the shuffle mode.
/// </summary>
/// <value>The shuffle mode.</value>
public GroupShuffleMode Mode { get; set; }
}