From eca5abe4bb33c6748b4120550891df6992bbe71b Mon Sep 17 00:00:00 2001 From: Bond_009 Date: Fri, 30 Aug 2024 14:27:30 +0200 Subject: Remove passwordSha1 param from AuthenticateUser function --- MediaBrowser.Controller/Library/IUserManager.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'MediaBrowser.Controller/Library/IUserManager.cs') diff --git a/MediaBrowser.Controller/Library/IUserManager.cs b/MediaBrowser.Controller/Library/IUserManager.cs index 6d6a532db..1c115be85 100644 --- a/MediaBrowser.Controller/Library/IUserManager.cs +++ b/MediaBrowser.Controller/Library/IUserManager.cs @@ -117,11 +117,10 @@ namespace MediaBrowser.Controller.Library /// /// The user. /// The password to use. - /// Hash of password. /// Remove endpoint to use. /// Specifies if a user session. /// User wrapped in awaitable task. - Task AuthenticateUser(string username, string password, string passwordSha1, string remoteEndPoint, bool isUserSession); + Task AuthenticateUser(string username, string password, string remoteEndPoint, bool isUserSession); /// /// Starts the forgot password process. -- cgit v1.2.3