diff options
| author | Niels van Velzen <nielsvanvelzen@users.noreply.github.com> | 2024-09-06 21:56:59 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-06 21:56:59 +0200 |
| commit | 2b492ed8cd82651453f7d58321dc50753f2cf961 (patch) | |
| tree | cbfdd78f5d9ba5a51424b1e2a1010caa938eb802 /Jellyfin.Api/Controllers/UserController.cs | |
| parent | cc2f91b331cd51ecf238db4370b98ecdaf1ad897 (diff) | |
| parent | eca5abe4bb33c6748b4120550891df6992bbe71b (diff) | |
Merge pull request #12545 from Bond-009/sha1
Remove passwordSha1 param from AuthenticateUser function
Diffstat (limited to 'Jellyfin.Api/Controllers/UserController.cs')
| -rw-r--r-- | Jellyfin.Api/Controllers/UserController.cs | 1 |
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); |
