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/2050eb7bb2acc8e42ed07fa97c6a5da129860de4/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
595 B

using MediaBrowser.Model.Dto;
using System.Collections.Generic;
namespace MediaBrowser.Model.Session
{
/// <summary>
/// Class UserDataChangeInfo
/// </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 List<UserItemDataDto> UserDataList { get; set; }
}
}