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/21ee835551a9dcfb0fa0b71a78b9284f67e8d2bc/Jellyfin.Api/Models/UserDtos/AuthenticateUserByName.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/Jellyfin.Api/Models/UserDtos/AuthenticateUserByName.cs

18 lines
395 B

namespace Jellyfin.Api.Models.UserDtos;
/// <summary>
/// The authenticate user by name request body.
/// </summary>
public class AuthenticateUserByName
{
/// <summary>
/// Gets or sets the username.
/// </summary>
public string? Username { get; set; }
/// <summary>
/// Gets or sets the plain text password.
/// </summary>
public string? Pw { get; set; }
}