diff --git a/keepassxc-browser/keepassxc-browser.js b/keepassxc-browser/keepassxc-browser.js index 87e6bf0..3abc4f0 100755 --- a/keepassxc-browser/keepassxc-browser.js +++ b/keepassxc-browser/keepassxc-browser.js @@ -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; };