Fixed broken logic, and fixed broken unit tests.

This commit is contained in:
2021-04-23 18:26:49 +01:00
parent fc3c91b975
commit 2776b469c8
2 changed files with 66 additions and 139 deletions
+6 -2
View File
@@ -2061,9 +2061,13 @@ namespace ASCOM.Meade.net
if (Connected)
{
if (!MovingAxis())
{
result = IsSlewingToTarget();
result = true;
}
else
{
result = true;
}
}
}
finally