From 50902080ce9bfeb28bee9e7a3769cc017d7adef0 Mon Sep 17 00:00:00 2001 From: Wayne Chen Date: Mon, 17 Dec 2018 16:48:02 -0800 Subject: [PATCH] fixing typos --- interface/src/Application.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 447770b608..36fb666f69 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -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); }); } }