mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 21:27:40 +00:00
GUACAMOLE-197: Consider challengeResponse empty value an acceptable response.
This commit is contained in:
committed by
Nick Couchman
parent
564b9687a2
commit
8be8626578
@@ -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 {
|
||||
|
Reference in New Issue
Block a user