소스 검색

Fix IOS df overflow issue #302

Ben Hsieh 7 년 전
부모
커밋
3a87c838aa
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      ios/RNFetchBlobFS.m

+ 2
- 2
ios/RNFetchBlobFS.m 파일 보기

@@ -760,8 +760,8 @@ NSMutableDictionary *fileStreams = nil;
760 760
         totalSpace = [fileSystemSizeInBytes unsignedLongLongValue];
761 761
         totalFreeSpace = [freeFileSystemSizeInBytes unsignedLongLongValue];
762 762
         callback(@[[NSNull null], @{
763
-                  @"free" : [NSString stringWithFormat:@"%ld", totalFreeSpace],
764
-                  @"total" : [NSString stringWithFormat:@"%ld", totalSpace]
763
+                  @"free" : [NSNumber numberWithUnsignedLongLong: totalFreeSpace],
764
+                  @"total" : [NSNumber numberWithUnsignedLongLong: totalSpace],
765 765
                 }]);
766 766
     } else {
767 767
         callback(@[@"failed to get storage usage."]);