V4.3 changes and merge

This commit is contained in:
2025-11-04 13:43:20 +00:00
5 changed files with 183 additions and 12 deletions

View File

@@ -31,9 +31,13 @@ namespace AiQ_GUI
while (!UP)
{
UP = await PingIP("8.8.8.8");
UP = await PingIP("10.10.10.137");
await Task.Delay(500);
if (i >= 5) MainForm.Instance.AddToActionsList($"Could not initialise new network with USER: {username} & PSWD: {password}"); // Try 5 times max
if (i >= 5)
{
//MainForm.Instance.AddToActionsList($"Could not initialise new network with USER: {username} & PSWD: {password}");
return; // Try 5 times max
}
i++;
}
}