From 2feecf6db8c7bd1893c1cc8d6de79b178fecd0b8 Mon Sep 17 00:00:00 2001 From: "Anthony J. Thibault" Date: Fri, 15 Jun 2018 14:56:10 -0700 Subject: [PATCH] removed unnecessary setting of 'username' annotation. --- interface/src/Application.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index df86ed80ee..e00275591b 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -1247,9 +1247,6 @@ Application::Application(int& argc, char** argv, QElapsedTimer& startupTimer, bo connect(accountManager.data(), &AccountManager::authRequired, dialogsManager.data(), &DialogsManager::showLoginDialog); #endif connect(accountManager.data(), &AccountManager::usernameChanged, this, &Application::updateWindowTitle); - connect(accountManager.data(), &AccountManager::usernameChanged, [](QString username){ - setCrashAnnotation("username", username.toStdString()); - }); // set the account manager's root URL and trigger a login request if we don't have the access token accountManager->setIsAgent(true);