From 113a3627242268db2e8ce0b4d662acff3257ab15 Mon Sep 17 00:00:00 2001 From: ansuz Date: Tue, 27 Aug 2019 17:46:40 +0200 Subject: [PATCH] fix typo which causes ephemeral channels to be stored --- historyKeeper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/historyKeeper.js b/historyKeeper.js index 3243d0f15..96ac43d96 100644 --- a/historyKeeper.js +++ b/historyKeeper.js @@ -93,7 +93,7 @@ module.exports.create = function (cfg) { let STANDARD_CHANNEL_LENGTH, EPHEMERAL_CHANNEL_LENGTH; const setConfig = function (config) { STANDARD_CHANNEL_LENGTH = config.STANDARD_CHANNEL_LENGTH; - EPHEMERAL_CHANNEL_LENGTH = config.EPHEMERAL_CHANNEl_LENGTH; + EPHEMERAL_CHANNEL_LENGTH = config.EPHEMERAL_CHANNEL_LENGTH; sendMsg = config.sendMsg; };