fix: c# warning

[skip changelog]
This commit is contained in:
Constrat
2024-08-22 23:56:15 +02:00
parent 046b3329ea
commit 971699bcbe

View File

@@ -70,7 +70,7 @@ namespace MaaWpfGui.Helper
"ko-kr" or "YoStarKR" =>
v => CharacterNames.Add(v.NameKr ?? string.Empty),
_ =>
v => CharacterNames.Add(v.Name ?? string.Empty)
v => CharacterNames.Add(v.Name ?? string.Empty),
};
}