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/a86b71899ec52c44ddc6c3018e8cc5e9d7ff4d62/Emby.Server.Implementations/Security/RegRecord.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.

12 lines
274 B

using System;
8 years ago
namespace Emby.Server.Implementations.Security
{
class RegRecord
{
public string featId { get; set; }
public bool registered { get; set; }
public DateTime expDate { get; set; }
public string key { get; set; }
}
}