GUACAMOLE-197: Consider challengeResponse empty value an acceptable response.

This commit is contained in:
Nick Couchman
2017-04-11 09:18:17 -04:00
committed by Nick Couchman
parent 564b9687a2
commit 8be8626578

View File

@@ -111,7 +111,7 @@ public class AuthenticationProviderService {
String challengeResponse = request.getParameter(RadiusChallengeResponseField.PARAMETER_NAME);
// We do not have a challenge response, so we proceed normally
if (challengeResponse == null || challengeResponse.isEmpty()) {
if (challengeResponse == null) {
// Initialize Radius Packet and try to authenticate
try {