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/5f5347aee3209383248a6055318ec8883291d406/MediaBrowser.Model/Users/PinRedeemResult.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Model/Users/PinRedeemResult.cs

22 lines
599 B

#pragma warning disable CS1591
using System;
6 years ago
namespace MediaBrowser.Model.Users
{
public class PinRedeemResult
{
/// <summary>
/// Gets or sets a value indicating whether this <see cref="PinRedeemResult"/> is success.
/// </summary>
/// <value><c>true</c> if success; otherwise, <c>false</c>.</value>
public bool Success { get; set; }
6 years ago
/// <summary>
/// Gets or sets the users reset.
/// </summary>
/// <value>The users reset.</value>
public string[] UsersReset { get; set; } = Array.Empty<string>();
6 years ago
}
}