Fix assert when looking for MSGID
This commit is contained in:
parent
7278450d9e
commit
2c0267adf1
|
@ -384,9 +384,8 @@ function FTNMessageScanTossModule() {
|
|||
}
|
||||
|
||||
Message.getMetaValuesByMessageId(message.replyToMsgId, 'FtnKludge', 'MSGID', (err, msgIdVal) => {
|
||||
assert(_.isString(msgIdVal));
|
||||
|
||||
if(!err) {
|
||||
assert(_.isString(msgIdVal), 'Expected string but got ' + (typeof msgIdVal) + ' (' + msgIdVal + ')');
|
||||
// got a MSGID - create a REPLY
|
||||
message.meta.FtnKludge.REPLY = msgIdVal;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue