diff options
Diffstat (limited to 'lib/app.js')
-rw-r--r-- | lib/app.js | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -17,7 +17,7 @@ function App(sbot, config) { var conf = config.patchfoo || {} this.port = conf.port || 8027 - this.host = conf.host || 'localhost' + this.host = conf.host || '::1' var base = conf.base || '/' this.opts = { @@ -58,6 +58,8 @@ App.prototype.unboxMsg = function (msg, cb) { if (err) { self.error('unbox:', err) return cb(null, msg) + } else if (content === false) { + return cb(null, msg) } var m = {} for (var k in msg) m[k] = msg[k] |