From a095b9b7bb1a07251db684c863943ada284e22fa Mon Sep 17 00:00:00 2001 From: Andreia Gaita Date: Tue, 15 Sep 2015 18:47:56 +0200 Subject: [PATCH] Fix Get Started link showing up with a delay --- .../TeamExplorer/Sync/GitHubPublishSection.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GitHub.VisualStudio/TeamExplorer/Sync/GitHubPublishSection.cs b/src/GitHub.VisualStudio/TeamExplorer/Sync/GitHubPublishSection.cs index 18e429571f..7c732bb60c 100644 --- a/src/GitHub.VisualStudio/TeamExplorer/Sync/GitHubPublishSection.cs +++ b/src/GitHub.VisualStudio/TeamExplorer/Sync/GitHubPublishSection.cs @@ -55,8 +55,8 @@ async void RTMSetup() if (ActiveRepo != null && ActiveRepoUri == null) { IsVisible = true; - loggedIn = await connectionManager.IsLoggedIn(hosts); ShowGetStarted = true; + loggedIn = await connectionManager.IsLoggedIn(hosts); ShowLogin = !loggedIn; ShowSignup = !loggedIn; }