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

49 lines
1.1 KiB

#nullable disable
#pragma warning disable CA1002, CA2227, CS1591
using System;
6 years ago
using System.Collections.Generic;
using Jellyfin.Data.Entities;
using MediaBrowser.Controller.Entities;
6 years ago
using MediaBrowser.Controller.Session;
using MediaBrowser.Model.Dto;
6 years ago
namespace MediaBrowser.Controller.Library
{
/// <summary>
/// Holds information about a playback progress event.
6 years ago
/// </summary>
public class PlaybackProgressEventArgs : EventArgs
{
public PlaybackProgressEventArgs()
{
Users = new List<User>();
}
public List<User> Users { get; set; }
6 years ago
public long? PlaybackPositionTicks { get; set; }
6 years ago
public BaseItem Item { get; set; }
6 years ago
public BaseItemDto MediaInfo { get; set; }
6 years ago
public string MediaSourceId { get; set; }
6 years ago
public bool IsPaused { get; set; }
6 years ago
public bool IsAutomated { get; set; }
public string DeviceId { get; set; }
6 years ago
public string DeviceName { get; set; }
6 years ago
public string ClientName { get; set; }
public string PlaySessionId { get; set; }
6 years ago
public SessionInfo Session { get; set; }
}
}