Fixed problem where the tracking rate was using the local culture to convert a string to a double.

This commit is contained in:
2024-11-06 16:47:28 +00:00
parent 4c7a40a8e4
commit 80899b8056
2 changed files with 33 additions and 1 deletions
+1 -1
View File
@@ -3668,7 +3668,7 @@ namespace ASCOM.Meade.net
rate = rate.Replace("+", string.Empty);
var rateDouble = double.Parse(rate);
var rateDouble = double.Parse(rate, CultureInfo.InvariantCulture);
DriveRates result;