Skip to content
Snippets Groups Projects
Commit 01af0df8 authored by rswindell's avatar rswindell
Browse files

Don't call the Progress callbacks when online != ON_REMOTE (e.g. running

tasks in timed events).
parent a2d213f1
No related branches found
No related tags found
No related merge requests found
......@@ -50,8 +50,9 @@ void sbbs_t::getmsgptrs()
{
if(!useron.number)
return;
::getmsgptrs(&cfg,&useron,subscan,ProgressLoadingMsgPtrs,this);
bputs(text[LoadedMsgPtrs]);
::getmsgptrs(&cfg,&useron,subscan,online == ON_REMOTE ? ProgressLoadingMsgPtrs : NULL,this);
if(online == ON_REMOTE)
bputs(text[LoadedMsgPtrs]);
}
void sbbs_t::putmsgptrs()
......@@ -76,7 +77,8 @@ static void ProgressSearchingUsers(void* cbdata, int count, int total)
uint sbbs_t::userdatdupe(uint usernumber, uint offset, uint datlen, char *dat
,bool del, bool next)
{
uint i=::userdatdupe(&cfg, usernumber, offset, datlen, dat, del, next, ProgressSearchingUsers, this);
bputs(text[SearchedForDupes]);
uint i=::userdatdupe(&cfg, usernumber, offset, datlen, dat, del, next, online == ON_REMOTE ? ProgressSearchingUsers : NULL, this);
if(online == ON_REMOTE)
bputs(text[SearchedForDupes]);
return(i);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment