mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Merge pull request #199 from keepassxreboot/hotfix/ignored-sites-fix
Fix #196 regression: input field detection broken
This commit is contained in:
commit
ada65945b1
1 changed files with 1 additions and 1 deletions
|
|
@ -2023,7 +2023,7 @@ cip.ignoreSite = function(sites) {
|
|||
|
||||
// Delete previously created Object if it exists. It will be replaced by an Array
|
||||
cip.initializeIgnoredSites = function() {
|
||||
if (cip.settings['ignoredSites'] !== null && cip.settings['ignoredSites'].constructor === Object) {
|
||||
if (cip.settings['ignoredSites'] !== undefined && cip.settings['ignoredSites'].constructor === Object) {
|
||||
delete cip.settings['ignoredSites'];
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue