Fix assert when looking for MSGID

This commit is contained in:
Bryan Ashby 2016-04-13 21:38:45 -06:00
parent 7278450d9e
commit 2c0267adf1
1 changed files with 3 additions and 4 deletions

View File

@ -383,10 +383,9 @@ function FTNMessageScanTossModule() {
return cb(null); // nothing to do return cb(null); // nothing to do
} }
Message.getMetaValuesByMessageId(message.replyToMsgId, 'FtnKludge', 'MSGID', (err, msgIdVal) => { Message.getMetaValuesByMessageId(message.replyToMsgId, 'FtnKludge', 'MSGID', (err, msgIdVal) => {
assert(_.isString(msgIdVal)); if(!err) {
assert(_.isString(msgIdVal), 'Expected string but got ' + (typeof msgIdVal) + ' (' + msgIdVal + ')');
if(!err) {
// got a MSGID - create a REPLY // got a MSGID - create a REPLY
message.meta.FtnKludge.REPLY = msgIdVal; message.meta.FtnKludge.REPLY = msgIdVal;
} }