Skip to content

Commit 8ff8fa3

Browse files
committed
GetNameメソッドの初期値をstring.Emptyに変更
GetNameメソッド内で、ユーザー名の初期値が"???"からstring.Emptyに変更されました。
1 parent a42cd86 commit 8ff8fa3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

kakoi/FormMain.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1416,7 +1416,7 @@ private static string DetermineLanguage(string text)
14161416
{
14171417
// 情報があればユーザー名を取得
14181418
Users.TryGetValue(publicKeyHex, out User? user);
1419-
string? userName = "???";
1419+
string? userName = string.Empty;
14201420
if (user != null)
14211421
{
14221422
userName = user.Name;

0 commit comments

Comments
 (0)