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

18 lines
446 B

#pragma warning disable CS1591
namespace MediaBrowser.Model.Session
6 years ago
{
public class PlaystateRequest
{
public PlaystateCommand Command { get; set; }
public long? SeekPositionTicks { get; set; }
/// <summary>
/// Gets or sets the controlling user identifier.
/// </summary>
/// <value>The controlling user identifier.</value>
public string? ControllingUserId { get; set; }
6 years ago
}
}