From 54a12fa23351ff2dffd595fab05fd882668778cd Mon Sep 17 00:00:00 2001 From: varjolintu Date: Sat, 9 Jan 2021 11:33:17 +0200 Subject: [PATCH] Fix detecting eBay password input fields --- keepassxc-browser/common/sites.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keepassxc-browser/common/sites.js b/keepassxc-browser/common/sites.js index f7623e7..0a3e862 100644 --- a/keepassxc-browser/common/sites.js +++ b/keepassxc-browser/common/sites.js @@ -56,7 +56,7 @@ kpxcSites.exceptionFound = function(classList) { if (document.location.origin === 'https://idmsa.apple.com' && [ 'password', 'form-row', 'show-password' ].every(c => classList.contains(c))) { return true; - } else if (document.location.origin.startsWith('https://signin.ebay.com') + } else if (document.location.origin.startsWith('https://signin.ebay.') && classList.contains('null')) { return true; } else if (document.location.origin.startsWith('https://www.fidelity.com')