From dae8838abe861c5a7c0bd916b2c944c94af44366 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Mon, 12 Feb 2024 20:03:49 +0100 Subject: [PATCH] Elaborate on user name change not updating launcher. --- SS14.Web/Areas/Identity/Pages/Account/Manage/Index.cshtml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SS14.Web/Areas/Identity/Pages/Account/Manage/Index.cshtml.cs b/SS14.Web/Areas/Identity/Pages/Account/Manage/Index.cshtml.cs index 901ac7e..8a71e62 100644 --- a/SS14.Web/Areas/Identity/Pages/Account/Manage/Index.cshtml.cs +++ b/SS14.Web/Areas/Identity/Pages/Account/Manage/Index.cshtml.cs @@ -121,7 +121,7 @@ public async Task OnPostUsernameAsync() _userManager.LogNameChanged(user, oldName, user.UserName, user); await _signInManager.RefreshSignInAsync(user); - StatusMessage = "Your username has been changed"; + StatusMessage = "Your username has been changed. Note that it may take some time to visibly update in some places, such as the launcher."; await _dbContext.SaveChangesAsync(); await tx.CommitAsync();