fix prev commit

This commit is contained in:
2024-05-28 15:18:47 +02:00
parent 991987bb6d
commit f8d4fda4f6
3 changed files with 8 additions and 5 deletions

View File

@@ -42,7 +42,7 @@ namespace OwnChar.Manager
ArgumentException.ThrowIfNullOrWhiteSpace(username, nameof(username));
ArgumentException.ThrowIfNullOrWhiteSpace(password, nameof(password));
CurrentUser = proxy.Login(username, password);
CurrentUser = proxy.Login(username, Utils.HashPassword(username, password));
return IsLoggedIn;
}