We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22514db commit 9519eb6Copy full SHA for 9519eb6
src/module.android.ts
@@ -46,7 +46,7 @@ async function check(permission: Permission): Promise<PermissionStatus> {
46
if (!RNP.available.includes(permission)) {
47
return RESULTS.UNAVAILABLE;
48
}
49
- if (!(await RNP.isNonRequestable(permission))) {
+ if (await RNP.isNonRequestable(permission)) {
50
return RESULTS.BLOCKED;
51
52
@@ -61,7 +61,7 @@ async function request(
61
62
63
64
65
66
67
0 commit comments