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/80832bc8d3dd2e1e84d27259091eb33a58cb53f8/MediaBrowser.Model/Registration/RegistrationInfo.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/Registration/RegistrationInfo.cs

29 lines
983 B

using System;
namespace MediaBrowser.Model.Registration
{
public class RegistrationInfo
{
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
public string Name { get; set; }
/// <summary>
/// Gets or sets the expiration date.
/// </summary>
/// <value>The expiration date.</value>
public DateTime ExpirationDate { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is trial.
/// </summary>
/// <value><c>true</c> if this instance is trial; otherwise, <c>false</c>.</value>
public bool IsTrial { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is registered.
/// </summary>
/// <value><c>true</c> if this instance is registered; otherwise, <c>false</c>.</value>
public bool IsRegistered { get; set; }
}
}