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/16a0537a01fded6dd24de9d11deda6d207496734/Emby.Dlna/PlayTo/PlaybackStartEventArgs.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/Emby.Dlna/PlayTo/PlaybackStartEventArgs.cs

17 lines
310 B

#pragma warning disable CS1591
using System;
namespace Emby.Dlna.PlayTo
{
public class PlaybackStartEventArgs : EventArgs
{
public PlaybackStartEventArgs(UBaseObject mediaInfo)
{
MediaInfo = mediaInfo;
}
public UBaseObject MediaInfo { get; set; }
}
}