duplicate failed urls are added into failedURLs
fix bug when download image with option SDWebImageRetryFailed
This commit is contained in:
parent
0db489b32e
commit
cded20c736
|
@ -194,10 +194,12 @@
|
|||
|
||||
if (error.code != NSURLErrorNotConnectedToInternet && error.code != NSURLErrorCancelled && error.code != NSURLErrorTimedOut) {
|
||||
@synchronized (self.failedURLs) {
|
||||
if (![self.failedURLs containsObject:url]) {
|
||||
[self.failedURLs addObject:url];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
else {
|
||||
BOOL cacheOnDisk = !(options & SDWebImageCacheMemoryOnly);
|
||||
|
||||
|
|
Loading…
Reference in New Issue