Skip to content

Commit 9ba73e8

Browse files
committed
Squished bad MSG_DELETED (MSG_DELETE is what was wanted) in dmbase.js en route to #172
1 parent e31ca6d commit 9ba73e8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

load/dmbase.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ msg_base = {
391391

392392
while (tmpPtr <= mb.last_msg) {
393393
if (((mHdr = mb.get_msg_header(tmpPtr)) == null) ||
394-
(mHdr.attr & MSG_DELETED)) {
394+
(mHdr.attr & MSG_DELETE)) {
395395
tmpPtr++;
396396
} else {
397397
return true;
@@ -438,7 +438,7 @@ msg_base = {
438438
"() Exception", e.message, 2);
439439
}
440440

441-
if ((curHdr == null) || (curHdr.attr&MSG_DELETED)) {
441+
if ((curHdr == null) || (curHdr.attr&MSG_DELETE)) {
442442
continue; //skip this shit, we don't want this indexed
443443
} else {
444444
if (userSettings.debug.message_scan) {

0 commit comments

Comments
 (0)