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

16 lines
335 B

using System;
namespace Jellyfin.Api.Models.SyncPlayDtos;
/// <summary>
/// Class JoinGroupRequestDto.
/// </summary>
public class JoinGroupRequestDto
{
/// <summary>
/// Gets or sets the group identifier.
/// </summary>
/// <value>The identifier of the group to join.</value>
public Guid GroupId { get; set; }
}