mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Merge pull request #2523 from keepassxreboot/fix/get_credentials_from_different_db
Fix retrieving credentials from changed DB in unlock dialog
This commit is contained in:
commit
5a6d37acf7
1 changed files with 1 additions and 1 deletions
|
|
@ -678,7 +678,7 @@ kpxc.retrieveCredentialsCallback = async function(credentials) {
|
|||
|
||||
// If credentials are not received, request them again
|
||||
kpxc.receiveCredentialsIfNecessary = async function() {
|
||||
if (kpxc.credentials.length === 0 && !_called.retrieveCredentials) {
|
||||
if (kpxc.credentials.length === 0) {
|
||||
if (!await isIframeAllowed()) {
|
||||
return [];
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue