GUACAMOLE-770: Regenerate code when field is empty.

This commit is contained in:
Virtually Nick
2020-04-03 13:16:53 -04:00
parent fae22a3f80
commit 43e5024676

View File

@@ -108,7 +108,7 @@ public class UserVerificationService {
// If no key is defined, attempt to generate a new key
String secret = attributes.get(TOTPUser.TOTP_KEY_SECRET_ATTRIBUTE_NAME);
if (secret == null) {
if (secret == null || secret.isEmpty()) {
// Generate random key for user
TOTPGenerator.Mode mode = confService.getMode();