From 476d5d776c6a6c02bb0d0b72972886140f6f96bd Mon Sep 17 00:00:00 2001 From: Devine Lu Linvega Date: Fri, 26 Jul 2019 13:29:32 +0900 Subject: [PATCH] Fixed issue with helpers --- desktop/sources/scripts/commander.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/sources/scripts/commander.js b/desktop/sources/scripts/commander.js index 283610c..88bda0e 100644 --- a/desktop/sources/scripts/commander.js +++ b/desktop/sources/scripts/commander.js @@ -119,7 +119,7 @@ function Commander (ronin) { } this.commit = function (shape) { - if (this._input.value.indexOf('$') < 0) { return } + if (this.cache.indexOf('$') < 0) { return } const segs = this.cache.split('$') const seg = segs[1] const words = seg.split(' ')