diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-10-17 00:52:41 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-10-17 00:52:41 -0400 |
| commit | 4f207c43dd912b710345e083adfb6ad45c849b1d (patch) | |
| tree | 56d9e71f10ba8b5f67fee39b846f6ebf2123f6a3 /MediaBrowser.Server.Implementations/Session | |
| parent | 6ca771cc7906ae6524f737ae9bf0bc1b916efb40 (diff) | |
update connect methods
Diffstat (limited to 'MediaBrowser.Server.Implementations/Session')
| -rw-r--r-- | MediaBrowser.Server.Implementations/Session/SessionManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Session/SessionManager.cs b/MediaBrowser.Server.Implementations/Session/SessionManager.cs index 9f77f5294..cf204a5ba 100644 --- a/MediaBrowser.Server.Implementations/Session/SessionManager.cs +++ b/MediaBrowser.Server.Implementations/Session/SessionManager.cs @@ -1252,7 +1252,7 @@ namespace MediaBrowser.Server.Implementations.Session && !(user != null && user.ConnectLinkType.HasValue && user.ConnectLinkType.Value == UserLinkType.Guest); var result = allowWithoutPassword || - await _userManager.AuthenticateUser(request.Username, request.Password, request.RemoteEndPoint).ConfigureAwait(false); + await _userManager.AuthenticateUser(request.Username, request.PasswordSha1, request.PasswordMd5, request.RemoteEndPoint).ConfigureAwait(false); if (!result) { |
