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/e25c538ac70b014f9872d3fde18339a8c0d9bcbf/MediaBrowser.Controller/Dlna/ControlRequest.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Controller/Dlna/ControlRequest.cs

22 lines
466 B

using System.Collections.Generic;
using System.IO;
namespace MediaBrowser.Controller.Dlna
{
public class ControlRequest
{
public IDictionary<string, string> Headers { get; set; }
public Stream InputXml { get; set; }
public string TargetServerUuId { get; set; }
public string RequestedUrl { get; set; }
public ControlRequest()
{
Headers = new Dictionary<string, string>();
}
}
}