From 1e9b43e03c551cc7b888131f899e8a8b49a78b59 Mon Sep 17 00:00:00 2001 From: misskiwi Date: Mon, 28 Feb 2022 20:23:04 +0900 Subject: [PATCH] Fixed mistyped prirvateKey to privateKey --- extension.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extension.js b/extension.js index 8876467..bc460e5 100644 --- a/extension.js +++ b/extension.js @@ -810,7 +810,7 @@ function destroy(isStart) { function getPassphrase(ftpConfig, cb) { fs.readFile(ftpConfig.privateKey, 'utf8', function (err, data) { if (err) { - output("Cannot read the private key: " + ftpConfig.prirvateKey); + output("Cannot read the private key: " + ftpConfig.privateKey); } else { if (data.includes('ENCRYPTED') || (data.includes('PuTTY') && !data.includes('Encryption: none'))) {