From c81aa001f47fe868b2217c9682e8469ba6c61088 Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Sun, 28 Jan 2018 13:22:47 -0700 Subject: [PATCH] Fix typo --- core/telnet_bridge.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/telnet_bridge.js b/core/telnet_bridge.js index 6fb81d21..447efe4c 100644 --- a/core/telnet_bridge.js +++ b/core/telnet_bridge.js @@ -126,7 +126,7 @@ exports.getModule = class TelnetBridgeModule extends MenuModule { constructor(options) { super(options); - this.config = Object.assign({}, _.get(options, 'menuConf.config'), options.extraArgs); + this.config = Object.assign({}, _.get(options, 'menuConfig.config'), options.extraArgs); this.config.port = this.config.port || 23; }