Skip to content

Commit

Permalink
Merge pull request #16490 from iterate-ch/bugfix/GH-16488
Browse files Browse the repository at this point in the history
Fix crash on async login canceled exception
  • Loading branch information
dkocher authored Nov 5, 2024
2 parents 6df2759 + 692aebc commit 41a4088
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public void warn(Host bookmark, String title, String message, String continueBut
throw new LoginCanceledException();
}
};
_browser.Invoke(d);
_browser.Invoke(d, true);
//Proceed nevertheless.
}

Expand All @@ -106,7 +106,7 @@ public Credentials prompt(Host bookmark, String username, String title, String r
throw new LoginCanceledException();
}
};
_browser.Invoke(d);
_browser.Invoke(d, true);
return credentials;
}

Expand Down

0 comments on commit 41a4088

Please sign in to comment.