diff options
Diffstat (limited to 'lib/app.js')
-rw-r--r-- | lib/app.js | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -146,6 +146,7 @@ App.prototype.getReverseNameSync = function (name) { } function getMsgWithValue(sbot, id, cb) { + if (!id) return cb() sbot.get(id, function (err, value) { if (err) return cb(err) cb(null, {key: id, value: value}) |