Fixed bug in tracking rate get where it always returns lunar when it should be sidereal

This commit is contained in:
2021-09-17 09:38:35 +01:00
parent 710ae0420a
commit 3b056ef7f8
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -2645,7 +2645,7 @@ namespace ASCOM.Meade.net
//Current Track Frequency expressed in hertz assuming a synchonous motor design where a 60.0 Hz motor clock
// would produce 1 revolution of the telescope in 24 hours.
DriveRates result = rate == "60.1" ? DriveRates.driveSidereal : DriveRates.driveLunar;
DriveRates result = rate == "+60.1" ? DriveRates.driveSidereal : DriveRates.driveLunar;
LogMessage("TrackingRate Get", $"{rate} {result}");