diff options
Diffstat (limited to 'scripts/lib/dwb.js')
-rw-r--r-- | scripts/lib/dwb.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/lib/dwb.js b/scripts/lib/dwb.js index f0ee0b75..11ebb69f 100644 --- a/scripts/lib/dwb.js +++ b/scripts/lib/dwb.js @@ -228,7 +228,7 @@ return function() { try { - this.apply(this, arguments); + return this.apply(this, arguments); } catch (e) { @@ -237,6 +237,7 @@ else io.debug(e); } + return undefined; }.bind(this); } }); |