@@ -50,7 +50,7 @@ const passwordCapture = {
50
50
}
51
51
} ,
52
52
53
- async handleRecieveCredentials ( tab , args , frameId ) {
53
+ async handleReceivedCredentials ( tab , args , frameId ) {
54
54
let domain = args [ 0 ] [ 0 ]
55
55
if ( domain . startsWith ( 'www.' ) ) {
56
56
domain = domain . slice ( 4 )
@@ -60,33 +60,37 @@ const passwordCapture = {
60
60
return
61
61
}
62
62
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 ] || ''
65
66
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
78
71
}
79
72
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 } ` )
82
86
}
83
87
} ,
84
88
85
89
initialize ( ) {
86
90
passwordCapture . usernameInput . placeholder = l ( 'username' )
87
91
passwordCapture . passwordInput . placeholder = l ( 'password' )
88
92
89
- webviews . bindIPC ( 'password-form-filled' , passwordCapture . handleRecieveCredentials )
93
+ webviews . bindIPC ( 'password-form-filled' , passwordCapture . handleReceivedCredentials )
90
94
91
95
passwordCapture . saveButton . addEventListener ( 'click' , function ( ) {
92
96
if ( passwordCapture . usernameInput . checkValidity ( ) && passwordCapture . passwordInput . checkValidity ( ) ) {
0 commit comments