Filter the error domain with NSURLErrorDomain before checking the URL Error Codes

This commit is contained in:
DreamPiggy 2019-03-21 11:32:36 +08:00
parent f023c9bb6c
commit 40abbd648d
1 changed files with 13 additions and 8 deletions

View File

@ -209,14 +209,19 @@
if ([self.delegate respondsToSelector:@selector(imageManager:shouldBlockFailedURL:withError:)]) { if ([self.delegate respondsToSelector:@selector(imageManager:shouldBlockFailedURL:withError:)]) {
shouldBlockFailedURL = [self.delegate imageManager:self shouldBlockFailedURL:url withError:error]; shouldBlockFailedURL = [self.delegate imageManager:self shouldBlockFailedURL:url withError:error];
} else { } else {
shouldBlockFailedURL = ( error.code != NSURLErrorNotConnectedToInternet // Filter the error domain and check error codes
&& error.code != NSURLErrorCancelled if ([error.domain isEqualToString:NSURLErrorDomain]) {
&& error.code != NSURLErrorTimedOut shouldBlockFailedURL = ( error.code != NSURLErrorNotConnectedToInternet
&& error.code != NSURLErrorInternationalRoamingOff && error.code != NSURLErrorCancelled
&& error.code != NSURLErrorDataNotAllowed && error.code != NSURLErrorTimedOut
&& error.code != NSURLErrorCannotFindHost && error.code != NSURLErrorInternationalRoamingOff
&& error.code != NSURLErrorCannotConnectToHost && error.code != NSURLErrorDataNotAllowed
&& error.code != NSURLErrorNetworkConnectionLost); && error.code != NSURLErrorCannotFindHost
&& error.code != NSURLErrorCannotConnectToHost
&& error.code != NSURLErrorNetworkConnectionLost);
} else {
shouldBlockFailedURL = NO;
}
} }
if (shouldBlockFailedURL) { if (shouldBlockFailedURL) {