Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit edfc910

Browse files
committed
Use the title of the connection (domain name or IP)
1 parent 1e55917 commit edfc910

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GitHub.VisualStudio/Base/EnsureLoggedInSection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ async Task CheckLogin()
5454
bool loggedIn = await connectionManager.IsLoggedIn(hosts, add);
5555
if (!loggedIn)
5656
{
57-
var msg = string.Format(CultureInfo.CurrentUICulture, Resources.NotLoggedInMessage, add.Title, add.ApiUri);
57+
var msg = string.Format(CultureInfo.CurrentUICulture, Resources.NotLoggedInMessage, add.Title, add.Title);
5858
vsServices.ShowMessage(
5959
msg,
6060
new RelayCommand(() => StartFlow(UIControllerFlow.Authentication))

0 commit comments

Comments
 (0)