From 11b2448471e046ba0772a7b2123d2cd98b8139a2 Mon Sep 17 00:00:00 2001 From: indexzero Date: Fri, 2 Oct 2015 01:00:55 -0700 Subject: [PATCH] [fix] Correct property path. Trim read secret keys from disk. --- lib/nconf/stores/file.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/nconf/stores/file.js b/lib/nconf/stores/file.js index 07e5f93..a5ea26e 100644 --- a/lib/nconf/stores/file.js +++ b/lib/nconf/stores/file.js @@ -43,7 +43,7 @@ var File = exports.File = function (options) { this.secure.alg = this.secure.alg || 'aes-256-ctr'; if (this.secure.secretPath) { - this.secret = fs.readFileSync(this.secure.secretPath, 'utf8'); + this.secure.secret = fs.readFileSync(this.secure.secretPath, 'utf8').trim(); } if (!this.secure.secret) {