Skip to content
Snippets Groups Projects
Commit f7f5bf9c authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Don't scan for new files (after new messages scan) when new file time is 0

(e.g. new user)
parent 5a25e3d0
No related branches found
No related tags found
No related merge requests found
Pipeline #7767 passed
......@@ -234,7 +234,7 @@ void sbbs_t::scanallsubs(int mode)
}
bprintf(text[MessageScanComplete],subs_scanned);
if(mode&SCAN_NEW && !(mode&(SCAN_MSGSONLY|SCAN_BACK|SCAN_TOYOU))
&& useron.misc&ANFSCAN && !(useron.rest&FLAG('T'))) {
&& useron.misc&ANFSCAN && !(useron.rest&FLAG('T')) && ns_time != 0) {
xfer_cmds++;
scanalldirs(FL_ULTIME);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment