Skip to content

Commit

Permalink
fix(filesystem): requestPermissions not resolving (#1991)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcesarmobile committed Jan 16, 2024
1 parent c5aab48 commit f9afbe9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
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 f9afbe9

Please sign in to comment.