diff --git a/iphone/Maps/Statistics/AppInfo.mm b/iphone/Maps/Statistics/AppInfo.mm index 9d51f9459f..e3fe78d1b7 100644 --- a/iphone/Maps/Statistics/AppInfo.mm +++ b/iphone/Maps/Statistics/AppInfo.mm @@ -187,7 +187,10 @@ NSString * const AppFeatureMoreAppsBanner = @"AppFeatureMoreAppsBanner"; } else { - Settings::Set("CountryCode", std::string([_countryCode UTF8String])); // saving code first time + if (_countryCode) + Settings::Set("CountryCode", std::string([_countryCode UTF8String])); // saving code first time + else + _countryCode = @""; } } return _countryCode;