Skip to content

Commit

Permalink
When prompting for Login wait
Browse files Browse the repository at this point in the history
  • Loading branch information
AliveDevil committed Nov 5, 2024
1 parent d9bb790 commit 692aebc
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 692aebc

Please sign in to comment.