Kaynağa Gözat

Check type (always or wheninuse) when requesting location permission. addresses #51

Yonah Forst 8 yıl önce
ebeveyn
işleme
bb8833c1bc
1 değiştirilmiş dosya ile 5 ekleme ve 1 silme
  1. 5
    1
      permissions/RNPLocation.m

+ 5
- 1
permissions/RNPLocation.m Dosyayı Görüntüle

50
             [self.locationManager requestWhenInUseAuthorization];
50
             [self.locationManager requestWhenInUseAuthorization];
51
         }
51
         }
52
     } else {
52
     } else {
53
-        completionHandler(status);
53
+        if ([CLLocationManager authorizationStatus] == kCLAuthorizationStatusAuthorizedWhenInUse && [type isEqualToString:@"always"]) {
54
+            completionHandler(RNPStatusDenied);
55
+        } else {
56
+            completionHandler(status);
57
+        }
54
     }
58
     }
55
 }
59
 }
56
 
60