Merge pull request #1018 from Scrumplex/fix-infinite-auth-loop
This commit is contained in:
@ -1258,6 +1258,9 @@ bool Application::launch(
|
||||
}
|
||||
connect(controller.get(), &LaunchController::succeeded, this, &Application::controllerSucceeded);
|
||||
connect(controller.get(), &LaunchController::failed, this, &Application::controllerFailed);
|
||||
connect(controller.get(), &LaunchController::aborted, this, [this] {
|
||||
controllerFailed(tr("Aborted"));
|
||||
});
|
||||
addRunningInstance();
|
||||
controller->start();
|
||||
return true;
|
||||
|
Reference in New Issue
Block a user