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/9126a8555b412ee7d39c4eab7d9c1d8fff792201/MediaBrowser.Controller/Dlna/SsdpMessageEventArgs.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Controller/Dlna/SsdpMessageEventArgs.cs

24 lines
565 B

using System;
using System.Collections.Generic;
using System.Net;
namespace MediaBrowser.Controller.Dlna
{
public class SsdpMessageEventArgs
{
public string Method { get; set; }
public EndPoint EndPoint { get; set; }
public Dictionary<string, string> Headers { get; set; }
public IPEndPoint LocalEndPoint { get; set; }
public byte[] Message { get; set; }
public SsdpMessageEventArgs()
{
Headers = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
}
}
}