Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: INTULocationRequestTypeSingle when requesting permissions always failed #134

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 9 additions & 2 deletions LocationManager/INTULocationManager/INTULocationManager.m
Expand Up @@ -1101,15 +1101,22 @@ - (void)locationManager:(CLLocationManager *)manager didUpdateHeading:(CLHeading
- (void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error
{
INTULMLog(@"Location services error: %@", [error localizedDescription]);
self.updateFailed = YES;

INTULocationServicesState locationServicesState = [INTULocationManager locationServicesState];

self.updateFailed = YES;

for (INTULocationRequest *locationRequest in self.locationRequests) {
if (locationRequest.isRecurring) {
// Keep the recurring request alive
[self processRecurringRequest:locationRequest];
} else {
// Fail any non-recurring requests
[self completeLocationRequest:locationRequest];
if (locationServicesState == INTULocationServicesStateNotDetermined && !locationRequest.hasTimedOut) {
self.updateFailed = NO;
} else {
[self completeLocationRequest:locationRequest];
}
}
}
}
Expand Down