This repository was archived by the owner on Mar 16, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -147,7 +147,8 @@ - (void) sendRequest:(__weak NSDictionary * _Nullable )options
147
147
self.options = options;
148
148
isIncrement = [options valueForKey: @" increment" ] == nil ? NO : [[options valueForKey: @" increment" ] boolValue ];
149
149
redirects = [[NSMutableArray alloc ] init ];
150
- [redirects addObject: req.URL.absoluteString];
150
+ if (req.URL != nil )
151
+ [redirects addObject: req.URL.absoluteString];
151
152
152
153
// set response format
153
154
NSString * rnfbResp = [req.allHTTPHeaderFields valueForKey: @" RNFB-Response" ];
@@ -574,7 +575,8 @@ - (void) URLSessionDidFinishEventsForBackgroundURLSession:(NSURLSession *)sessio
574
575
575
576
- (void ) URLSession : (NSURLSession *)session task : (NSURLSessionTask *)task willPerformHTTPRedirection : (NSHTTPURLResponse *)response newRequest : (NSURLRequest *)request completionHandler : (void (^)(NSURLRequest * _Nullable))completionHandler
576
577
{
577
- [redirects addObject: [request.URL absoluteString ]];
578
+ if (request.URL != nil )
579
+ [redirects addObject: [request.URL absoluteString ]];
578
580
completionHandler (request);
579
581
}
580
582
You can’t perform that action at this time.
0 commit comments