Merge pull request #12545 from Bond-009/sha1

Remove passwordSha1 param from AuthenticateUser function
This commit is contained in:
Niels van Velzen
2024-09-06 21:56:59 +02:00
committed by GitHub
4 changed files with 1 additions and 5 deletions

View File

@@ -1468,7 +1468,6 @@ namespace Emby.Server.Implementations.Session
user = await _userManager.AuthenticateUser(
request.Username,
request.Password,
null,
request.RemoteEndPoint,
true).ConfigureAwait(false);
}