Skip to content

Commit

Permalink
Merge pull request #557 from cknitt/fix-copy-file-android
Browse files Browse the repository at this point in the history
copyFile: fix missing parameter on Android.
  • Loading branch information
itinance authored Sep 27, 2018
2 parents 2809249 + 38b80d5 commit 35c8eff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion android/src/main/java/com/rnfs/RNFSManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ public void moveFile(String filepath, String destPath, Promise promise) {
}

@ReactMethod
public void copyFile(String filepath, String destPath, Promise promise) {
public void copyFile(String filepath, String destPath, ReadableMap options, Promise promise) {
try {
copyFile(filepath, destPath);

Expand Down

0 comments on commit 35c8eff

Please sign in to comment.