Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/src/commit/da535db6554e1ca6610f247b02b3a0391e8f1f02/MediaBrowser.Controller/Entities/PlaybackProgressEventArgs.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Controller/Entities/PlaybackProgressEventArgs.cs

14 lines
360 B

using MediaBrowser.Common.Events;
namespace MediaBrowser.Controller.Entities
{
/// <summary>
/// Holds information about a playback progress event
/// </summary>
public class PlaybackProgressEventArgs : GenericEventArgs<BaseItem>
{
public User User { get; set; }
public long? PlaybackPositionTicks { get; set; }
}
}