From 57c1c38d52286be9411958b06ee091643e22b75d Mon Sep 17 00:00:00 2001 From: David Sparer Date: Fri, 27 Jan 2017 13:47:24 -0700 Subject: [PATCH] fixed minor bug with PasswordAuthenticator --- mRemoteV1/Security/Authentication/PasswordAuthenticator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mRemoteV1/Security/Authentication/PasswordAuthenticator.cs b/mRemoteV1/Security/Authentication/PasswordAuthenticator.cs index 794e3ad9..1d6904e8 100644 --- a/mRemoteV1/Security/Authentication/PasswordAuthenticator.cs +++ b/mRemoteV1/Security/Authentication/PasswordAuthenticator.cs @@ -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;