From bacb60193f6361bb94c7871cd6c791f00a013306 Mon Sep 17 00:00:00 2001 From: Jonathan Cuthbert Date: Sat, 23 Jul 2016 19:57:47 -0500 Subject: [PATCH] fix shell property value (#377) --- session.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/session.js b/session.js index 77109aaf..c7ee468e 100644 --- a/session.js +++ b/session.js @@ -45,7 +45,7 @@ module.exports = class Session extends EventEmitter { } }); - this.shell = defaultShell; + this.shell = shell || defaultShell; this.getTitle(); }