mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Fix credential retrieval on page reload
This commit is contained in:
parent
172fd6807a
commit
ae87880494
3 changed files with 9 additions and 4 deletions
|
|
@ -62,7 +62,7 @@ browser.tabs.onActivated.addListener(async function(activeInfo) {
|
|||
}
|
||||
}
|
||||
} catch (err) {
|
||||
console.log('Error: ' + err);
|
||||
console.log('Error: ' + err.message);
|
||||
}
|
||||
});
|
||||
|
||||
|
|
@ -98,6 +98,11 @@ browser.webNavigation.onCommitted.addListener((details) => {
|
|||
return;
|
||||
}
|
||||
|
||||
// Clear credentials on reload so a new retrieval can be made
|
||||
if (details.transitionType === 'reload') {
|
||||
page.clearLogins(details.tabId);
|
||||
}
|
||||
|
||||
page.redirectCount = 0;
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"manifest_version": 2,
|
||||
"name": "KeePassXC-Browser",
|
||||
"version": "1.7.8.1",
|
||||
"version_name": "1.7.8.1",
|
||||
"version": "1.7.9",
|
||||
"version_name": "1.7.9",
|
||||
"description": "__MSG_extensionDescription__",
|
||||
"author": "KeePassXC Team",
|
||||
"icons": {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "KeePassXC-Browser",
|
||||
"version": "1.7.8.1",
|
||||
"version": "1.7.9",
|
||||
"description": "KeePassXC-Browser",
|
||||
"main": "build.js",
|
||||
"devDependencies": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue