Skip to content

Commit

Permalink
fix(filesystem): requestPermissions not resolving (#1990)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcesarmobile committed Jan 15, 2024
1 parent 4acc0e8 commit 2fe419b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -460,7 +460,7 @@ public void requestPermissions(PluginCall call) {
permissionsResultJSON.put(PUBLIC_STORAGE, "granted");
call.resolve(permissionsResultJSON);
} else {
requestPermissionForAlias(PUBLIC_STORAGE, call, "permissionCallback");
super.requestPermissions(call);
}
}

Expand Down

0 comments on commit 2fe419b

Please sign in to comment.