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/4e13b41eedae4e4b0260aee670facbb3c18d5d80/MediaBrowser.Model/Dlna/IDeviceDiscovery.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/Dlna/IDeviceDiscovery.cs

14 lines
315 B

#pragma warning disable CS1591
using System;
using Jellyfin.Data.Events;
6 years ago
namespace MediaBrowser.Model.Dlna
{
public interface IDeviceDiscovery
{
event EventHandler<GenericEventArgs<UpnpDeviceInfo>> DeviceDiscovered;
event EventHandler<GenericEventArgs<UpnpDeviceInfo>> DeviceLeft;
}
}