mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Fixed ignored sites in firefox
This commit is contained in:
parent
252732c22f
commit
790fd62f90
1 changed files with 1 additions and 1 deletions
|
|
@ -1559,7 +1559,7 @@ cip.initCredentialFields = function(forceCall) {
|
|||
cip.initializeSitePreferences();
|
||||
if (cip.settings.sitePreferences) {
|
||||
for (const site of cip.settings.sitePreferences) {
|
||||
if (site.url === document.location.href || siteMatch(site.url, document.location.href)) {
|
||||
if (site.url === document.location.href || siteMatch(site.url, window.top.location.href)) {
|
||||
if (site.ignore === IGNORE_FULL) {
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue