diff options
author | cel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519> | 2018-01-08 19:11:15 -1000 |
---|---|---|
committer | cel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519> | 2018-01-08 19:11:15 -1000 |
commit | cbf9a1d87eb43eaea73e6c019e7b4a2dca3bbaa6 (patch) | |
tree | 24636f66aece489ca88a0bb05f96ee02a51855fe /lib/app.js | |
parent | 498eaa3edf1241abdc6180410db97254c70e2185 (diff) | |
download | patchfoo-cbf9a1d87eb43eaea73e6c019e7b4a2dca3bbaa6.tar.gz patchfoo-cbf9a1d87eb43eaea73e6c019e7b4a2dca3bbaa6.zip |
Render line-comment messages
Diffstat (limited to 'lib/app.js')
-rw-r--r-- | lib/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -101,7 +101,7 @@ App.prototype.error = console.error.bind(console, logPrefix) App.prototype.unboxMsg = function (msg, cb) { var self = this - var c = msg.value && msg.value.content + var c = msg && msg.value && msg.value.content if (typeof c !== 'string') cb(null, msg) else self.unboxContent(c, function (err, content) { if (err) { |