aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Controllers/UserController.cs
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2024-08-30 14:27:30 +0200
committerBond_009 <bond.009@outlook.com>2024-08-30 14:27:30 +0200
commiteca5abe4bb33c6748b4120550891df6992bbe71b (patch)
tree094cade451c3567ce6ac3f24794e240fed21db58 /Jellyfin.Api/Controllers/UserController.cs
parent9644e894f0f6e1206f68a2b23aeb8065a565f9bf (diff)
Remove passwordSha1 param from AuthenticateUser function
Diffstat (limited to 'Jellyfin.Api/Controllers/UserController.cs')
-rw-r--r--Jellyfin.Api/Controllers/UserController.cs1
1 files changed, 0 insertions, 1 deletions
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);