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

31 lines
787 B

11 years ago
using System.Collections.Generic;
using System.Xml.Serialization;
11 years ago
namespace MediaBrowser.Model.Dlna
11 years ago
{
public class ContainerProfile
{
[XmlAttribute("type")]
11 years ago
public DlnaProfileType Type { get; set; }
public ProfileCondition[] Conditions { get; set; }
[XmlAttribute("container")]
11 years ago
public string Container { get; set; }
public ContainerProfile()
{
Conditions = new ProfileCondition[] { };
}
public List<string> GetContainers()
{
List<string> list = new List<string>();
foreach (string i in (Container ?? string.Empty).Split(','))
{
if (!string.IsNullOrEmpty(i)) list.Add(i);
}
return list;
11 years ago
}
}
}