mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Merge pull request #1825 from lodavid/fix/auto-open-race
Fix extension behavior for Auto-Open
This commit is contained in:
commit
288aca7dae
1 changed files with 1 additions and 1 deletions
|
|
@ -103,7 +103,7 @@ kpxc.detectDatabaseChange = async function(response) {
|
|||
kpxcIcons.switchIcons();
|
||||
|
||||
if (document.visibilityState !== 'hidden') {
|
||||
if (response.hash.new !== '' && response.hash.new !== response.hash.old) {
|
||||
if (response.hash.new !== '') {
|
||||
_called.retrieveCredentials = false;
|
||||
const settings = await sendMessage('load_settings');
|
||||
kpxc.settings = settings;
|
||||
|
|
|
|||
Loading…
Reference in a new issue