소스 검색

Comment out the line which causes IOS app crash when request expired #271

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

+ 2
- 1
ios/RNFetchBlobNetwork.m 파일 보기

@@ -298,7 +298,8 @@ NSOperationQueue *taskQueue;
298 298
     UIBackgroundTaskIdentifier tid = [app beginBackgroundTaskWithName:taskId expirationHandler:^{
299 299
         NSLog([NSString stringWithFormat:@"session %@ expired", taskId ]);
300 300
         [expirationTable setObject:task forKey:taskId];
301
-        [app endBackgroundTask:tid];
301
+        // comment out this one as it might cause app crash #271
302
+//        [app endBackgroundTask:tid];
302 303
     }];
303 304
 
304 305
 }