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

14 lines
214 B

#nullable disable
#pragma warning disable CS1591
using System;
namespace Emby.Dlna.PlayTo
{
public class PlaybackStoppedEventArgs : EventArgs
{
public UBaseObject MediaInfo { get; set; }
}
}