Fix bad function call in data export cancel.

This commit is contained in:
John Preston 2019-02-01 11:17:23 +03:00
parent 34b0f6f014
commit 9b57725b8c
1 changed files with 3 additions and 1 deletions

View File

@ -301,7 +301,9 @@ void PanelController::stopWithConfirmation(FnMut<void()> callback) {
if (!_state.is<ProcessingState>()) {
LOG(("Export Info: Stop Panel Without Confirmation."));
stopExport();
callback();
if (callback) {
callback();
}
return;
}
auto stop = [=, callback = std::move(callback)]() mutable {