mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-05-24 02:02:29 -04:00
Mark PasswordSha1 as obsolete
This commit is contained in:
parent
856819e58f
commit
940c30081e
@ -1485,7 +1485,7 @@ namespace Emby.Server.Implementations.Session
|
||||
user = await _userManager.AuthenticateUser(
|
||||
request.Username,
|
||||
request.Password,
|
||||
request.PasswordSha1,
|
||||
null,
|
||||
request.RemoteEndPoint,
|
||||
true).ConfigureAwait(false);
|
||||
}
|
||||
|
@ -12,6 +12,7 @@ namespace MediaBrowser.Controller.Session
|
||||
|
||||
public string Password { get; set; }
|
||||
|
||||
[Obsolete("Send full password in Password field")]
|
||||
public string PasswordSha1 { get; set; }
|
||||
|
||||
public string App { get; set; }
|
||||
|
Loading…
x
Reference in New Issue
Block a user