We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2929d40 commit 77a0ebfCopy full SHA for 77a0ebf
NetTelegramBotApi/Requests/SendLocation.cs
@@ -77,8 +77,8 @@ public override HttpContent CreateHttpContent()
77
{
78
dic.Add("chat_id", ChannelName);
79
}
80
- dic.Add("latitude", Latitude.ToString());
81
- dic.Add("longitude", Longitude.ToString());
+ dic.Add("latitude", Latitude.ToString(System.Globalization.CultureInfo.InvariantCulture));
+ dic.Add("longitude", Longitude.ToString(System.Globalization.CultureInfo.InvariantCulture));
82
83
if (DisableNotification.HasValue)
84
0 commit comments