fix: 修复一个可能存在的错误

This commit is contained in:
uye
2023-01-20 00:19:49 +08:00
parent 2511299c49
commit a2f61b7136

View File

@@ -1384,6 +1384,11 @@ namespace MaaWpfGui
private string ToUpperAndCheckStage(string value)
{
if (string.IsNullOrEmpty(value))
{
return value;
}
value = value.ToUpper();
if (StageList != null)
{