From 4f207c43dd912b710345e083adfb6ad45c849b1d Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Fri, 17 Oct 2014 00:52:41 -0400 Subject: update connect methods --- MediaBrowser.Server.Implementations/Session/SessionManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'MediaBrowser.Server.Implementations/Session') 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) { -- cgit v1.2.3