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/82d4566c6d40e0ffd32a5afd41d256788a0ae379/MediaBrowser.Common.Implementations/Security/RegRecord.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.

12 lines
282 B

using System;
namespace MediaBrowser.Common.Implementations.Security
{
class RegRecord
{
public string featId { get; set; }
public bool registered { get; set; }
public DateTime expDate { get; set; }
public string key { get; set; }
}
}