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/552694bb383e956eaa2ce75c208a70c75cfb2a41/MediaBrowser.Model/Dlna/HttpHeaderInfo.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
|
using System.Xml.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Dlna
|
|
|
|
|
{
|
|
|
|
|
public class HttpHeaderInfo
|
|
|
|
|
{
|
|
|
|
|
[XmlAttribute("name")]
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
[XmlAttribute("value")]
|
|
|
|
|
public string Value { get; set; }
|
|
|
|
|
|
|
|
|
|
[XmlAttribute("match")]
|
|
|
|
|
public HeaderMatchType Match { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|