mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-06-11 23:24:43 +02:00
Fix assert when looking for MSGID
This commit is contained in:
parent
7278450d9e
commit
2c0267adf1
1 changed files with 3 additions and 4 deletions
|
@ -383,10 +383,9 @@ function FTNMessageScanTossModule() {
|
|||
return cb(null); // nothing to do
|
||||
}
|
||||
|
||||
Message.getMetaValuesByMessageId(message.replyToMsgId, 'FtnKludge', 'MSGID', (err, msgIdVal) => {
|
||||
assert(_.isString(msgIdVal));
|
||||
|
||||
if(!err) {
|
||||
Message.getMetaValuesByMessageId(message.replyToMsgId, 'FtnKludge', 'MSGID', (err, 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…
Add table
Add a link
Reference in a new issue