msgraph-sdk-objc icon indicating copy to clipboard operation
msgraph-sdk-objc copied to clipboard

MSLargeFileUploadTask crashes when uploading a large file and the Internet connection disappears

Open anton-simakov opened this issue 3 years ago • 3 comments

MSLargeFileUploadTask crashes when uploading a large file and the Internet connection disappears.

Steps to reproduce:

  1. Start an upload of a large file using MSLargeFileUploadTask
  2. 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.

anton-simakov avatar Oct 11 '21 09:10 anton-simakov