From 050682c84cc90f1c9cc573d25574374b5bdd63a8 Mon Sep 17 00:00:00 2001 From: luiscuenca Date: Thu, 23 May 2019 19:53:37 -0700 Subject: [PATCH] Keep logged in after first run --- interface/src/Application.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 5432577223..a0cb790958 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -9366,6 +9366,7 @@ void Application::forceDisplayName(const QString& displayName) { } void Application::forceLoginWithTokens(const QString& tokens) { DependencyManager::get()->setAccessTokens(tokens); + Setting::Handle(KEEP_ME_LOGGED_IN_SETTING_NAME, true).set(true); } void Application::setConfigFileURL(const QString& fileUrl) { DependencyManager::get()->setConfigFileURL(fileUrl);