add space between username and displayname to make it more visually pleasing

This commit is contained in:
axell 2024-07-06 14:44:02 +02:00 committed by GitHub
parent 2efb5fa95b
commit 0715cc0b03
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -254,12 +254,9 @@ namespace Bloxstrap.Integrations
{
App.Logger.WriteLine(LOG_IDENT, "Could not get user info!");
} else {
App.Logger.WriteLine(LOG_IDENT, "testpoint1");
smallimagetext = userInfoResponse.DisplayName + $"(@{userInfoResponse.Username})"; //example: john doe (@johndoe)
smallimagetext = userInfoResponse.DisplayName + $" (@{userInfoResponse.Username})"; //example: john doe (@johndoe)
App.Logger.WriteLine(LOG_IDENT, $"Got user info as {smallimagetext}");
}
App.Logger.WriteLine(LOG_IDENT, "testpoint2");
}