diff options
| author | Luke <luke.pulverenti@gmail.com> | 2017-09-17 13:09:37 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-09-17 13:09:37 -0400 |
| commit | 64b04216f11799c114e57349e83ce78ef2795a02 (patch) | |
| tree | 5f9f5532bdb1bd31761039c81b1d80a14d59cc28 /Emby.Server.Implementations/Session | |
| parent | 3cc6c739c92a7ed2402a91ceab5fa9aa90c00322 (diff) | |
| parent | b01489c40fbd0aa6013f1ed448d902094a186f9f (diff) | |
Merge pull request #2888 from MediaBrowser/dev
fix signature
Diffstat (limited to 'Emby.Server.Implementations/Session')
| -rw-r--r-- | Emby.Server.Implementations/Session/SessionManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Session/SessionManager.cs b/Emby.Server.Implementations/Session/SessionManager.cs index 0692a0ba5..6f185bc81 100644 --- a/Emby.Server.Implementations/Session/SessionManager.cs +++ b/Emby.Server.Implementations/Session/SessionManager.cs @@ -1416,7 +1416,7 @@ namespace Emby.Server.Implementations.Session if (enforcePassword) { - var result = await _userManager.AuthenticateUser(request.Username, request.PasswordSha1, request.PasswordMd5, request.RemoteEndPoint).ConfigureAwait(false); + var result = await _userManager.AuthenticateUser(request.Username, request.Password, request.PasswordSha1, request.PasswordMd5, request.RemoteEndPoint).ConfigureAwait(false); if (result == null) { |
