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/5967d26228e99dede275d5807a583e7811634e37/MediaBrowser.Controller/Session/AuthenticationRequest.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Controller/Session/AuthenticationRequest.cs

31 lines
640 B

#nullable disable
#pragma warning disable CS1591
using System;
6 years ago
namespace MediaBrowser.Controller.Session
{
public class AuthenticationRequest
{
public string Username { get; set; }
6 years ago
public Guid UserId { get; set; }
6 years ago
public string Password { get; set; }
[Obsolete("Send full password in Password field")]
6 years ago
public string PasswordSha1 { get; set; }
6 years ago
public string App { get; set; }
6 years ago
public string AppVersion { get; set; }
6 years ago
public string DeviceId { get; set; }
6 years ago
public string DeviceName { get; set; }
6 years ago
public string RemoteEndPoint { get; set; }
}
}