diff --git a/src/Mobile/eShopOnContainers/eShopOnContainers.Core/App.xaml.cs b/src/Mobile/eShopOnContainers/eShopOnContainers.Core/App.xaml.cs index 9430b1aba..c8c8b9b2e 100644 --- a/src/Mobile/eShopOnContainers/eShopOnContainers.Core/App.xaml.cs +++ b/src/Mobile/eShopOnContainers/eShopOnContainers.Core/App.xaml.cs @@ -52,7 +52,7 @@ namespace eShopOnContainers if (Settings.AllowGpsLocation && !Settings.UseFakeLocation) { - await GetRealLocation(); + await GetGpsLocation(); } if (!Settings.UseMocks && !string.IsNullOrEmpty(Settings.UserId)) @@ -68,7 +68,7 @@ namespace eShopOnContainers // Handle when your app sleeps } - private async Task GetRealLocation() + private async Task GetGpsLocation() { var locator = CrossGeolocator.Current;