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

12 lines
267 B

namespace MediaBrowser.Model.Connect
{
public class PinCreationResult
{
public string Pin { get; set; }
public string DeviceId { get; set; }
public bool IsConfirmed { get; set; }
public bool IsExpired { get; set; }
}
}