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

12 lines
195 B

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