Merge pull request #2574 from keepassxreboot/fix/atlassian_password_input

Fix detecting Atlassian password input
This commit is contained in:
Sami Vänttinen 2025-06-04 16:28:15 +03:00 committed by GitHub
commit 633fd4bf0d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;