Skip to content

Commit

Permalink
adsb: fix culture #3446
Browse files Browse the repository at this point in the history
  • Loading branch information
meee1 authored Nov 13, 2024
1 parent b5a456f commit e4998bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ExtLibs/Utilities/adsb.cs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ void TryConnect()
// Store start time
var timer = Stopwatch.StartNew();

string formattedUrl = string.Format(url, server, CurrentPosition.Lat, CurrentPosition.Lng, httpRequestRadius);
string formattedUrl = string.Format(CultureInfo.InvariantCulture, url, server, CurrentPosition.Lat, CurrentPosition.Lng, httpRequestRadius);
var t = Download.GetAsyncWithStatus(formattedUrl);
t.Wait();

Expand Down

0 comments on commit e4998bd

Please sign in to comment.