fixing typos

This commit is contained in:
Wayne Chen 2018-12-17 16:48:02 -08:00
parent 816733b55f
commit 50902080ce

View file

@ -5273,11 +5273,9 @@ void Application::resumeAfterLoginDialogActionTaken() {
if (!accountManager->isLoggedIn()) { if (!accountManager->isLoggedIn()) {
if (arguments().contains("--url")) { if (arguments().contains("--url")) {
addressManager->goToEntry();
auto reply = SandboxUtils::getStatus(); auto reply = SandboxUtils::getStatus();
connect(reply, &QNetworkReply::finished, this, [this, reply] { handleSandboxStatus(reply); }); connect(reply, &QNetworkReply::finished, this, [this, reply] { handleSandboxStatus(reply); });
} } else {
else {
addressManager->goToEntry(); addressManager->goToEntry();
} }
} else { } else {
@ -5293,7 +5291,7 @@ void Application::resumeAfterLoginDialogActionTaken() {
} }
} else { } else {
auto reply = SandboxUtils::getStatus(); auto reply = SandboxUtils::getStatus();
connect(reply, &QNetworkReply::finished, this, [this, reply] { handleSandboxStatus(reply); });; connect(reply, &QNetworkReply::finished, this, [this, reply] { handleSandboxStatus(reply); });
} }
} }