You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ ./FakeGPS -s 50,63
The following location has been set in the driver's registry settings:
Lat: 50
Long: 63
This doesn't :
$ ./FakeGPS -s 50.0,63
ZOMG, we got this error:
Input string was not in a correct format.
Send feedback plz!
So here is my feedback :)
After loking into the code in GeolocationHelper.cs I can see that the regexp went ok but it crash on the Convert.ToDouble method call throwing a FormatException.
After a few digging I found that :
windows 10 parameter > Region >Additionnal Settings >Number > and changed the decimal symbol seprator to "." (from ",")
It fixed the problem, I am in French number format setting, and the lovely Convert.ToDouble method seems to use it.
Two different ideas to solve this (to avoid being dependant of locals) :
force convert.toDouble to use "." as seprator in any case.
use only integer, where 51.51786,-0.102216 become 5151786 102216 as arguments
The text was updated successfully, but these errors were encountered:
This works :
This doesn't :
So here is my feedback :)
After loking into the code in GeolocationHelper.cs I can see that the regexp went ok but it crash on the Convert.ToDouble method call throwing a FormatException.
After a few digging I found that :
windows 10 parameter > Region >Additionnal Settings >Number > and changed the decimal symbol seprator to "." (from ",")
It fixed the problem, I am in French number format setting, and the lovely Convert.ToDouble method seems to use it.
Two different ideas to solve this (to avoid being dependant of locals) :
The text was updated successfully, but these errors were encountered: