mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-06-12 23:54:38 +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
|
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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue