aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2021-04-22 06:49:54 -0600
committercrobibero <cody@robibe.ro>2021-04-22 06:49:54 -0600
commit940c30081ef8b9290d9f3c24b5529b2e593f924c (patch)
treee419e06614e423646deb5dfb6e17a43968f3cf59 /Emby.Server.Implementations
parent856819e58f79bdfce3433a9080e673187a4a77c1 (diff)
Mark PasswordSha1 as obsolete
Diffstat (limited to 'Emby.Server.Implementations')
-rw-r--r--Emby.Server.Implementations/Session/SessionManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Session/SessionManager.cs b/Emby.Server.Implementations/Session/SessionManager.cs
index 10e28c33a..6f21ec31e 100644
--- a/Emby.Server.Implementations/Session/SessionManager.cs
+++ b/Emby.Server.Implementations/Session/SessionManager.cs
@@ -1485,7 +1485,7 @@ namespace Emby.Server.Implementations.Session
user = await _userManager.AuthenticateUser(
request.Username,
request.Password,
- request.PasswordSha1,
+ null,
request.RemoteEndPoint,
true).ConfigureAwait(false);
}