mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Merge pull request #1299 from keepassxreboot/fix/improve_ebay_login_flow
Improve eBay login flow
This commit is contained in:
commit
4cf1731d2e
2 changed files with 4 additions and 2 deletions
|
|
@ -79,7 +79,7 @@ kpxcSites.exceptionFound = function(identifier) {
|
|||
&& [ 'password', 'form-row', 'show-password' ].every(c => identifier.contains(c))) {
|
||||
return true;
|
||||
} else if (document.location.origin.startsWith('https://signin.ebay.')
|
||||
&& identifier.contains('null')) {
|
||||
&& (identifier === 'null' || identifier.value === 'null' || identifier === 'pass')) {
|
||||
return true;
|
||||
} else if (document.location.origin.startsWith('https://www.fidelity.com')
|
||||
&& identifier.contains('fs-mask-username')) {
|
||||
|
|
|
|||
|
|
@ -300,7 +300,9 @@ kpxcForm.onSubmit = async function(e) {
|
|||
return;
|
||||
}
|
||||
|
||||
await kpxc.setPasswordFilled(true);
|
||||
if (passwordField) {
|
||||
await kpxc.setPasswordFilled(true);
|
||||
}
|
||||
|
||||
const url = trimURL(kpxc.settings.saveDomainOnlyNewCreds ? window.top.location.origin : window.top.location.href);
|
||||
await sendMessage('page_set_submitted', [ true, usernameValue, passwordValue, url, kpxc.credentials ]);
|
||||
|
|
|
|||
Loading…
Reference in a new issue