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/191259893646ba9afc5af89685ec4e8f26648cbd/MediaBrowser.Dlna/Ssdp/DeviceDiscoveryInfo.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
|
using MediaBrowser.Dlna.PlayTo;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Net;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Dlna.Ssdp
|
|
|
|
|
{
|
|
|
|
|
public class DeviceDiscoveryInfo
|
|
|
|
|
{
|
|
|
|
|
public Device Device { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The server's ip address that the device responded to
|
|
|
|
|
/// </summary>
|
|
|
|
|
public IPAddress LocalIpAddress { get; set; }
|
|
|
|
|
|
|
|
|
|
public Uri Uri { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Usn { get; set; }
|
|
|
|
|
public string Nt { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|