Skip to content

Commit 317ab4d

Browse files
feat(bitwarden): errors from loadSuggestions in getSuggestions are now thrown directly
fix(passwordCapture): renamed typo `handleRecieveCredentials` to `handleReceivedCredentials` and updated usage refactor(passwordCapture): updated error handling for `getSuggestions` in `handleReceivedCredentials`
1 parent 145af86 commit 317ab4d

File tree

3 files changed

+24
-27
lines changed

3 files changed

+24
-27
lines changed

js/passwordManager/bitwarden.js

+1-8
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,7 @@ class Bitwarden {
8585
throw new Error()
8686
}
8787

88-
try {
89-
const suggestions = await this.loadSuggestions(command, domain)
90-
this.lastCallList[domain] = suggestions
91-
return suggestions
92-
} catch (e) {
93-
this.lastCallList[domain] = null
94-
}
95-
88+
this.lastCallList[domain] = await this.loadSuggestions(command, domain)
9689
return this.lastCallList[domain]
9790
}
9891

js/passwordManager/passwordCapture.js

+22-18
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const passwordCapture = {
5050
}
5151
},
5252

53-
async handleRecieveCredentials (tab, args, frameId) {
53+
async handleReceivedCredentials (tab, args, frameId) {
5454
let domain = args[0][0]
5555
if (domain.startsWith('www.')) {
5656
domain = domain.slice(4)
@@ -60,33 +60,37 @@ const passwordCapture = {
6060
return
6161
}
6262

63-
const username = args[0][1] || ''
64-
const password = args[0][2] || ''
63+
try {
64+
const username = args[0][1] || ''
65+
const password = args[0][2] || ''
6566

66-
const manager = await PasswordManagers.getConfiguredPasswordManager()
67-
if (!manager || !manager.saveCredential) {
68-
// the password can't be saved
69-
return
70-
}
71-
72-
// check if this username/password combo is already saved
73-
const credentials = await manager.getSuggestions(domain)
74-
const alreadyExists = credentials.some(cred => cred.username === username && cred.password === password)
75-
if (!alreadyExists) {
76-
if (!passwordCapture.bar.hidden) {
77-
passwordCapture.hideCaptureBar()
67+
const manager = await PasswordManagers.getConfiguredPasswordManager()
68+
if (!manager || !manager.saveCredential) {
69+
// the password can't be saved
70+
return
7871
}
7972

80-
passwordCapture.currentDomain = domain
81-
passwordCapture.showCaptureBar(username, password)
73+
// check if this username/password combo is already saved
74+
const credentials = await manager.getSuggestions(domain)
75+
const alreadyExists = credentials.some(cred => cred.username === username && cred.password === password)
76+
if (!alreadyExists) {
77+
if (!passwordCapture.bar.hidden) {
78+
passwordCapture.hideCaptureBar()
79+
}
80+
81+
passwordCapture.currentDomain = domain
82+
passwordCapture.showCaptureBar(username, password)
83+
}
84+
} catch (e) {
85+
console.error(`Failed to get password suggestions: ${e.message}`)
8286
}
8387
},
8488

8589
initialize () {
8690
passwordCapture.usernameInput.placeholder = l('username')
8791
passwordCapture.passwordInput.placeholder = l('password')
8892

89-
webviews.bindIPC('password-form-filled', passwordCapture.handleRecieveCredentials)
93+
webviews.bindIPC('password-form-filled', passwordCapture.handleReceivedCredentials)
9094

9195
passwordCapture.saveButton.addEventListener('click', function () {
9296
if (passwordCapture.usernameInput.checkValidity() && passwordCapture.passwordInput.checkValidity()) {

js/passwordManager/passwordManager.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ function initialize () {
101101

102102
try {
103103
const credentials = await manager.getSuggestions(hostname)
104-
if (credentials !== null) {
104+
if (credentials) {
105105
webviews.callAsync(tab, 'sendToFrame', [frameId, 'password-autofill-match', {
106106
credentials,
107107
hostname

0 commit comments

Comments
 (0)