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/d0f58ac0bfb99bd0759c3338292d0c2014067f42/MediaBrowser.Model/Connect/ConnectUserServer.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/Connect/ConnectUserServer.cs

15 lines
397 B


namespace MediaBrowser.Model.Connect
{
public class ConnectUserServer
{
public string Id { get; set; }
public string Url { get; set; }
public string Name { get; set; }
public string AccessKey { get; set; }
public string SystemId { get; set; }
10 years ago
public string LocalAddress { get; set; }
public string UserType { get; set; }
}
}