msgraph-sdk-objc
msgraph-sdk-objc copied to clipboard
MSLargeFileUploadTask crashes when uploading a large file and the Internet connection disappears
MSLargeFileUploadTask
crashes when uploading a large file and the Internet connection disappears.
Steps to reproduce:
- Start an upload of a large file using
MSLargeFileUploadTask
- Disconnect from the internet
Result
The library crashes in
- (void)uploadNextSegmentWithCompletion:(HTTPRequestCompletionHandler)completionHandler
{
[...]
NSDictionary *dataDict = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:nil]; // (line 76)
[...]
}
Reason
data
is nil.