mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Fix minor bug in auth form (#1806)
This commit is contained in:
parent
29e47cf636
commit
b6389317f0
1 changed files with 3 additions and 3 deletions
|
@ -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) {
|
||||||
|
|
Loading…
Reference in a new issue