mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Merge pull request #2574 from keepassxreboot/fix/atlassian_password_input
Fix detecting Atlassian password input
This commit is contained in:
commit
633fd4bf0d
1 changed files with 3 additions and 0 deletions
|
|
@ -97,6 +97,9 @@ kpxcSites.exceptionFound = function(identifier, field) {
|
|||
return true;
|
||||
} else if (document.location.origin === 'https://wordpress.com' && identifier?.value === 'login__form-password') {
|
||||
return true;
|
||||
} else if (document.location.origin === 'https://id.atlassian.com' &&
|
||||
Array.isArray(identifier) && identifier?.contains('password-field')) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Reference in a new issue