Skip to content
This repository was archived by the owner on Mar 16, 2019. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ios/RNFetchBlob/RNFetchBlob.m
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ - (NSDictionary *)constantsToExport
BOOL isDir = nil;
exist = [fm fileExistsAtPath:path isDirectory:&isDir];
if(exist == NO || isDir == NO) {
callback(@[[NSString stringWithFormat:@"failed to list path `%@` for it is not exist or it is not a folder", path]]);
callback(@[[NSString stringWithFormat:@"failed to list path `%@` because it does not exist or it is not a folder", path]]);
return ;
}
NSError * error = nil;
Expand Down