diff options
author | cel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519> | 2017-05-03 19:35:21 -1000 |
---|---|---|
committer | cel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519> | 2017-05-03 19:38:20 -1000 |
commit | a3e592f2f227c01576d82795c9ca58a25c24bc87 (patch) | |
tree | 86ed2d60c2b63ae2b8c75a81aeee8df5af8dfc44 /lib | |
parent | d673cfb75088b40a7c099ba9538637a44726443a (diff) | |
download | patchfoo-a3e592f2f227c01576d82795c9ca58a25c24bc87.tar.gz patchfoo-a3e592f2f227c01576d82795c9ca58a25c24bc87.zip |
Handle decrypt failure when running as a plugin
%VdhLu+iT854EN35HO+en9rc2bBnyLisA9fKxGr4vAVU=.sha256
Diffstat (limited to 'lib')
-rw-r--r-- | lib/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -75,7 +75,7 @@ App.prototype.unboxMsg = function (msg, cb) { if (err) { self.error('unbox:', err) return cb(null, msg) - } else if (content === false) { + } else if (!content) { return cb(null, msg) } var m = {} |