소스 검색

Fix IOS fs error handling when CameraRoll is not installed

Ben Hsieh 8 년 전
부모
커밋
0c407f0cde
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      src/ios/RNFetchBlobFS.m

+ 1
- 1
src/ios/RNFetchBlobFS.m 파일 보기

@@ -371,7 +371,7 @@ NSMutableDictionary *fileStreams = nil;
371 371
             {
372 372
                 BOOL exists = [[NSFileManager defaultManager] fileExistsAtPath:path];
373 373
                 if(!exists) {
374
-                    reject(@"RNFetchBlobFS readFile error", @"file not exists", nil);
374
+                    reject(@"RNFetchBlobFS readFile error", @"file not exists", [[NSError alloc]init]);
375 375
                     return;
376 376
                 }
377 377
                 fileContent = [NSData dataWithContentsOfFile:path];