Fix minor bug in auth form

This commit is contained in:
AJ Ferguson 2021-01-05 01:12:36 -09:00
parent 29e47cf636
commit bde3747483

View file

@ -198,12 +198,12 @@ public class LoginEncryptionUtils {
String password = response.getInputResponses().get(2); String password = response.getInputResponses().get(2);
session.authenticate(email, password); session.authenticate(email, password);
// Clear windows so authentication data isn't accidentally cached
windowCache.getWindows().clear();
} else { } else {
showLoginDetailsWindow(session); showLoginDetailsWindow(session);
} }
// Clear windows so authentication data isn't accidentally cached
windowCache.getWindows().clear();
} else if (formId == AUTH_FORM_ID && window instanceof SimpleFormWindow) { } else if (formId == AUTH_FORM_ID && window instanceof SimpleFormWindow) {
SimpleFormResponse response = (SimpleFormResponse) window.getResponse(); SimpleFormResponse response = (SimpleFormResponse) window.getResponse();
if (response != null) { if (response != null) {