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/115b4b2c1b703f39efcaff81ab2ed8a2f947129f/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; }
}
}