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/671f686827f56a5efcab3ec96116f0c48ae138f3/MediaBrowser.Dlna/PlayTo/PlaylistItem.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Dlna/PlayTo/PlaylistItem.cs

15 lines
307 B

using MediaBrowser.Model.Dlna;
namespace MediaBrowser.Dlna.PlayTo
{
public class PlaylistItem
{
public string StreamUrl { get; set; }
public string Didl { get; set; }
public StreamInfo StreamInfo { get; set; }
public DeviceProfile Profile { get; set; }
}
11 years ago
}