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.
2 parents 9a10735 + c5f9a66 commit e10f658Copy full SHA for e10f658
android/src/main/java/com/RNFetchBlob/RNFetchBlobFS.java
@@ -535,7 +535,7 @@ private static void deleteRecursive(File fileOrDirectory) throws IOException {
535
static void mkdir(String path, Promise promise) {
536
File dest = new File(path);
537
if(dest.exists()) {
538
- promise.reject("EEXIST", dest.isDirectory() ? "Folder" : "File" + " '" + path + "' already exists");
+ promise.reject("EEXIST", (dest.isDirectory() ? "Folder" : "File") + " '" + path + "' already exists");
539
return;
540
}
541
try {
0 commit comments