Modify error message

This commit is contained in:
varjolintu 2023-09-16 17:24:13 +03:00
parent 29991bf8ea
commit b836cf6223

View file

@ -51,7 +51,7 @@ kpxcFill.fillFromCombination = async function(elem, passOnly) {
? kpxc.combinations.find(c => c.password === elem)
: kpxc.combinations.find(c => c.username === elem);
if (!combination) {
logDebug('Error: No combination found.');
logDebug('Error: No username/password field combination found.');
return false;
}