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/5396b616bf2d7e387bc20539eeae03e841f60c01/MediaBrowser.Controller/Library/ItemChangeEventArgs.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Controller/Library/ItemChangeEventArgs.cs

29 lines
648 B

#nullable disable
#pragma warning disable CA1711, CS1591
using MediaBrowser.Controller.Entities;
6 years ago
namespace MediaBrowser.Controller.Library
{
/// <summary>
/// Class ItemChangeEventArgs.
6 years ago
/// </summary>
public class ItemChangeEventArgs
{
/// <summary>
/// Gets or sets the item.
/// </summary>
/// <value>The item.</value>
public BaseItem Item { get; set; }
public BaseItem Parent { get; set; }
/// <summary>
/// Gets or sets the item.
/// </summary>
/// <value>The item.</value>
public ItemUpdateType UpdateReason { get; set; }
}
}