fix: 修正tcp连接检测部分的错误变量名

This commit is contained in:
SherkeyXD
2023-10-03 01:26:30 +08:00
parent d233ace08e
commit d99541bbbc

View File

@@ -1274,7 +1274,7 @@ namespace MaaWpfGui.Main
// normal -> [host]:[port]
string[] addresses = address.Split(':');
if (address.Length != 2)
if (addresses.Length != 2)
{
return false;
}