Quellcode durchsuchen

Fixing issue where Array.includes() is not supported by RN for iOS8. This commit closes #26

Evan Rose vor 8 Jahren
Ursprung
Commit
07b5f05b5c
1 geänderte Dateien mit 3 neuen und 3 gelöschten Zeilen
  1. 3
    3
      ReactNativePermissions.js

+ 3
- 3
ReactNativePermissions.js Datei anzeigen

@@ -66,9 +66,9 @@ class ReactNativePermissions {
66 66
 	}
67 67
 
68 68
 	requestPermission(permission, type) {
69
-		let options; 
70
-
71
-		if (!this.getPermissionTypes().includes(permission)) {
69
+		let options;
70
+		
71
+		if (this.getPermissionTypes().indexOf(permission) === -1) {
72 72
 			return Promise.reject(`ReactNativePermissions: ${permission} is not a valid permission type on ${Platform.OS}`)
73 73
 		} else if (permission == 'backgroundRefresh'){
74 74
 			return Promise.reject('ReactNativePermissions: You cannot request backgroundRefresh')