Fix news manager assert error when exit too early
This commit is contained in:
parent
35463a12da
commit
00c7bf561e
@ -83,7 +83,11 @@ namespace Online
|
||||
assert(isPreparing());
|
||||
setBusy();
|
||||
execute();
|
||||
if (RequestManager::isRunning() &&
|
||||
RequestManager::get()->getAbort() && isAbortable()) return;
|
||||
callback();
|
||||
if (RequestManager::isRunning() &&
|
||||
RequestManager::get()->getAbort() && isAbortable()) return;
|
||||
setDone();
|
||||
} // executeNow
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user