Explorar el Código

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

Evan Rose hace 8 años
padre
commit
07b5f05b5c
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. 3
    3
      ReactNativePermissions.js

+ 3
- 3
ReactNativePermissions.js Ver fichero

66
 	}
66
 	}
67
 
67
 
68
 	requestPermission(permission, type) {
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
 			return Promise.reject(`ReactNativePermissions: ${permission} is not a valid permission type on ${Platform.OS}`)
72
 			return Promise.reject(`ReactNativePermissions: ${permission} is not a valid permission type on ${Platform.OS}`)
73
 		} else if (permission == 'backgroundRefresh'){
73
 		} else if (permission == 'backgroundRefresh'){
74
 			return Promise.reject('ReactNativePermissions: You cannot request backgroundRefresh')
74
 			return Promise.reject('ReactNativePermissions: You cannot request backgroundRefresh')