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/3178896004540c4a5884b9235a67ffbe3f58af0b/MediaBrowser.Dlna/Profiles/DenonAvrProfile.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Dlna/Profiles/DenonAvrProfile.cs

30 lines
698 B

11 years ago
using MediaBrowser.Model.Dlna;
using System.Xml.Serialization;
11 years ago
namespace MediaBrowser.Dlna.Profiles
{
[XmlRoot("Profile")]
11 years ago
public class DenonAvrProfile : DefaultProfile
{
public DenonAvrProfile()
{
Name = "Denon AVR";
Identification = new DeviceIdentification
{
FriendlyName = @"Denon:\[AVR:.*",
Manufacturer = "Denon"
};
DirectPlayProfiles = new[]
{
new DirectPlayProfile
{
Container = "mp3,flac,m4a,wma",
Type = DlnaProfileType.Audio
},
};
}
}
}