Remove automatic username field add

This commit is contained in:
varjolintu 2018-05-10 18:27:28 +03:00
parent 94e52558fe
commit a0bcf3c78c

View file

@ -894,15 +894,6 @@ cipFields.getAllCombinations = function(inputs) {
}
}
// If only username field found, add it to the array
if (fields.length === 0 && uField) {
const combination = {
username: uField[0].getAttribute('data-cip-id'),
password: null
};
fields.push(combination);
}
return fields;
};