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/18974550041a4c83203c0bb36936107895b04389/Emby.Dlna/Common/DeviceService.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/Emby.Dlna/Common/DeviceService.cs

22 lines
439 B

#pragma warning disable CS1591
namespace Emby.Dlna.Common
{
public class DeviceService
{
public string ServiceType { get; set; }
public string ServiceId { get; set; }
public string ScpdUrl { get; set; }
public string ControlUrl { get; set; }
public string EventSubUrl { get; set; }
/// <inheritdoc />
public override string ToString()
=> ServiceId;
}
}