fixed minor bug with PasswordAuthenticator

This commit is contained in:
David Sparer
2017-01-27 13:47:24 -07:00
parent 8b98181752
commit 57c1c38d52

View File

@@ -30,7 +30,7 @@ namespace mRemoteNG.Security.Authentication
authenticated = true;
LastAuthenticatedPassword = password;
}
catch (EncryptionException)
catch
{
password = AuthenticationRequestor?.Invoke();
if (password == null || password.Length == 0) break;