Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1201,12 +1201,8 @@ public void disconnect(Component reason) {

// Remove from session manager
geyser.getSessionManager().removeSession(this);
if (authData != null) {
PendingMicrosoftAuthentication.AuthenticationTask task = geyser.getPendingMicrosoftAuthentication().getTask(authData.xuid());
if (task != null) {
task.resetRunningFlow();
}
}
// Don't cancel any pending Microsoft auth here - the whole point of PendingMicrosoftAuthentication
// is to let mobile users disconnect to finish auth in the browser. Task cleans up on timeout.
}

if (tickThread != null) {
Expand Down
Loading