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/250e795c3be21586f50414efff2a9846588ac864/MediaBrowser.Model/Session/UserDataChangeInfo.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/Session/UserDataChangeInfo.cs

24 lines
573 B

#nullable disable
using MediaBrowser.Model.Dto;
6 years ago
namespace MediaBrowser.Model.Session
{
/// <summary>
/// Class UserDataChangeInfo.
6 years ago
/// </summary>
public class UserDataChangeInfo
{
/// <summary>
/// Gets or sets the user id.
/// </summary>
/// <value>The user id.</value>
public string UserId { get; set; }
/// <summary>
/// Gets or sets the user data list.
/// </summary>
/// <value>The user data list.</value>
public UserItemDataDto[] UserDataList { get; set; }
}
}