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());
|
assert(isPreparing());
|
||||||
setBusy();
|
setBusy();
|
||||||
execute();
|
execute();
|
||||||
|
if (RequestManager::isRunning() &&
|
||||||
|
RequestManager::get()->getAbort() && isAbortable()) return;
|
||||||
callback();
|
callback();
|
||||||
|
if (RequestManager::isRunning() &&
|
||||||
|
RequestManager::get()->getAbort() && isAbortable()) return;
|
||||||
setDone();
|
setDone();
|
||||||
} // executeNow
|
} // executeNow
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user