diff options
Diffstat (limited to 'iphone/FixMyStreet/MyCLController.m')
-rwxr-xr-x | iphone/FixMyStreet/MyCLController.m | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/iphone/FixMyStreet/MyCLController.m b/iphone/FixMyStreet/MyCLController.m index df2fa08f7..0e996e242 100755 --- a/iphone/FixMyStreet/MyCLController.m +++ b/iphone/FixMyStreet/MyCLController.m @@ -110,7 +110,8 @@ static MyCLController *sharedCLDelegate = nil; // can reset this for all apps by going to Settings > General > Reset > Reset Location Warnings. // case kCLErrorDenied: - [errorString appendFormat:@"%@\n", NSLocalizedString(@"LocationDenied", nil)]; + [self.locationManager stopUpdatingLocation]; + [self.delegate newLocationError:@"FixMyStreet needs your location to know where your problem is."]; break; // This error code is usually returned whenever the device has no data or WiFi connectivity, |