From eca5abe4bb33c6748b4120550891df6992bbe71b Mon Sep 17 00:00:00 2001 From: Bond_009 Date: Fri, 30 Aug 2024 14:27:30 +0200 Subject: Remove passwordSha1 param from AuthenticateUser function --- Jellyfin.Api/Controllers/UserController.cs | 1 - 1 file changed, 1 deletion(-) (limited to 'Jellyfin.Api/Controllers/UserController.cs') diff --git a/Jellyfin.Api/Controllers/UserController.cs b/Jellyfin.Api/Controllers/UserController.cs index 2df79c80c..d7886d247 100644 --- a/Jellyfin.Api/Controllers/UserController.cs +++ b/Jellyfin.Api/Controllers/UserController.cs @@ -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); -- cgit v1.2.3