Skip to content

Commit

Permalink
fix(filesystem): copy doesn't resolve on Android (#233)
Browse files Browse the repository at this point in the history
  • Loading branch information
leo6104 authored Feb 5, 2021
1 parent 7ca538b commit 17cbf3b
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,7 @@ private void _copy(PluginCall call, Boolean doRename) {
}
try {
implementation.copy(from, directory, to, toDirectory, doRename);
call.resolve();
} catch (CopyFailedException ex) {
call.reject(ex.getMessage());
} catch (IOException ex) {
Expand Down

0 comments on commit 17cbf3b

Please sign in to comment.