Skip to content

Commit 34d20af

Browse files
committed
do not request location if asked previously
1 parent 04fe4b9 commit 34d20af

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

ios/Geofencing.swift

+5
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,11 @@ class Geofencing: RCTEventEmitter, CLLocationManagerDelegate {
8383
return
8484
}
8585

86+
if CLLocationManager.authorizationStatus() != .notDetermined {
87+
successCallback([["success": true, "location": getLocationAuthorizationStatus()]])
88+
return
89+
}
90+
8691
self.allowWhileUsing = allowWhileUsing
8792
self.allowAlways = allowAlways
8893
authorizationSuccessCallback = successCallback

0 commit comments

Comments
 (0)