Do not fill username to already filled password field

This commit is contained in:
varjolintu 2025-09-22 10:57:15 +03:00
parent ac35caaa35
commit 55cf8c05ad

View file

@ -265,7 +265,7 @@ kpxcFill.fillInCredentials = async function(combination, predefinedUsername, uui
}
// Fill username
if (combination.username && usernameValue &&
if (combination.username && usernameValue && combination.username !== combination.password &&
(!combination.username.value || combination.username.value !== usernameValue)) {
if (!passOnly) {
kpxc.setValueWithChange(combination.username, usernameValue);