mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-07-25 12:08:21 +02:00
Fix erronous warning
This commit is contained in:
parent
af54098f31
commit
1ecc68b250
1 changed files with 1 additions and 1 deletions
|
@ -784,7 +784,7 @@ function FTNMessageScanTossModule() {
|
||||||
}
|
}
|
||||||
|
|
||||||
Message.getMessageIdsByMetaValue('FtnKludge', 'MSGID', message.meta.FtnKludge.REPLY, (err, msgIds) => {
|
Message.getMessageIdsByMetaValue('FtnKludge', 'MSGID', message.meta.FtnKludge.REPLY, (err, msgIds) => {
|
||||||
if(msgIds) {
|
if(msgIds && msgIds.length > 0) {
|
||||||
// expect a single match, but dupe checking is not perfect - warn otherwise
|
// expect a single match, but dupe checking is not perfect - warn otherwise
|
||||||
if(1 === msgIds.length) {
|
if(1 === msgIds.length) {
|
||||||
message.replyToMsgId = msgIds[0];
|
message.replyToMsgId = msgIds[0];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue