Skip to content

Commit

Permalink
chore: renamed keyPassword to passphrase for consistency with ssh…
Browse files Browse the repository at this point in the history
…2 module
  • Loading branch information
billchurch committed Dec 2, 2024
1 parent 829b5cd commit 5a77fc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/socket.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class WebSSH2Socket extends EventEmitter {
username: null,
password: null,
privateKey: null,
keyPassword: null,
passphrase: null,
host: null,
port: null,
term: null,
Expand Down Expand Up @@ -146,7 +146,7 @@ class WebSSH2Socket extends EventEmitter {
username: creds.username,
password: creds.password,
privateKey: creds.privateKey,
keyPassword: creds.keyPassword,
passphrase: creds.passphrase,
host: creds.host,
port: creds.port
})
Expand Down

0 comments on commit 5a77fc2

Please sign in to comment.