mirror of
https://github.com/overte-org/overte.git
synced 2025-04-15 12:28:51 +02:00
fixing typos
This commit is contained in:
parent
816733b55f
commit
50902080ce
1 changed files with 2 additions and 4 deletions
|
@ -5273,11 +5273,9 @@ void Application::resumeAfterLoginDialogActionTaken() {
|
|||
|
||||
if (!accountManager->isLoggedIn()) {
|
||||
if (arguments().contains("--url")) {
|
||||
addressManager->goToEntry();
|
||||
auto reply = SandboxUtils::getStatus();
|
||||
connect(reply, &QNetworkReply::finished, this, [this, reply] { handleSandboxStatus(reply); });
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
addressManager->goToEntry();
|
||||
}
|
||||
} else {
|
||||
|
@ -5293,7 +5291,7 @@ void Application::resumeAfterLoginDialogActionTaken() {
|
|||
}
|
||||
} else {
|
||||
auto reply = SandboxUtils::getStatus();
|
||||
connect(reply, &QNetworkReply::finished, this, [this, reply] { handleSandboxStatus(reply); });;
|
||||
connect(reply, &QNetworkReply::finished, this, [this, reply] { handleSandboxStatus(reply); });
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue