Remove passwordSha1 param from AuthenticateUser function

This commit is contained in:
Bond_009
2024-08-30 14:27:30 +02:00
parent 9644e894f0
commit eca5abe4bb
5 changed files with 2 additions and 6 deletions

View File

@@ -296,7 +296,6 @@ public class UserController : BaseJellyfinApiController
var success = await _userManager.AuthenticateUser(
user.Username,
request.CurrentPw ?? string.Empty,
request.CurrentPw ?? string.Empty,
HttpContext.GetNormalizedRemoteIP().ToString(),
false).ConfigureAwait(false);