We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56ec1d9 commit 55c2c66Copy full SHA for 55c2c66
1 file changed
src/Mobile/eShopOnContainers/eShopOnContainers.Core/App.xaml.cs
@@ -52,7 +52,7 @@ protected override async void OnStart()
52
53
if (Settings.AllowGpsLocation && !Settings.UseFakeLocation)
54
{
55
- await GetRealLocation();
+ await GetGpsLocation();
56
}
57
58
if (!Settings.UseMocks && !string.IsNullOrEmpty(Settings.UserId))
@@ -68,7 +68,7 @@ protected override void OnSleep()
68
// Handle when your app sleeps
69
70
71
- private async Task GetRealLocation()
+ private async Task GetGpsLocation()
72
73
var locator = CrossGeolocator.Current;
74
0 commit comments