From 5d89ed2a815b89a34256ebcbdd2b96445b83dec0 Mon Sep 17 00:00:00 2001 From: Wayne Chen Date: Mon, 17 Dec 2018 13:46:55 -0800 Subject: [PATCH] matching master --- interface/src/Application.cpp | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 36fb666f69..7663f51fbd 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -5272,12 +5272,7 @@ void Application::resumeAfterLoginDialogActionTaken() { nodeList->getDomainHandler().resetting(); if (!accountManager->isLoggedIn()) { - if (arguments().contains("--url")) { - auto reply = SandboxUtils::getStatus(); - connect(reply, &QNetworkReply::finished, this, [this, reply] { handleSandboxStatus(reply); }); - } else { - addressManager->goToEntry(); - } + addressManager->goToEntry(); } else { QVariant testProperty = property(hifi::properties::TEST); if (testProperty.isValid()) { @@ -5290,8 +5285,7 @@ void Application::resumeAfterLoginDialogActionTaken() { connect(reply, &QNetworkReply::finished, this, [this, reply] { handleSandboxStatus(reply); }); } } else { - auto reply = SandboxUtils::getStatus(); - connect(reply, &QNetworkReply::finished, this, [this, reply] { handleSandboxStatus(reply); }); + addressManager->loadSettings(); } }