Merge pull request #1 from initlifeinc/initlifeinc-patch-1
don't to perform download if url is "" but not nil
This commit is contained in:
commit
20c77af44c
|
@ -133,7 +133,7 @@
|
|||
isFailedUrl = [self.failedURLs containsObject:url];
|
||||
}
|
||||
|
||||
if (!url || (!(options & SDWebImageRetryFailed) && isFailedUrl)) {
|
||||
if (url.absoluteString.length == 0 || (!(options & SDWebImageRetryFailed) && isFailedUrl)) {
|
||||
dispatch_main_sync_safe(^{
|
||||
NSError *error = [NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorFileDoesNotExist userInfo:nil];
|
||||
completedBlock(nil, error, SDImageCacheTypeNone, YES, url);
|
||||
|
|
Loading…
Reference in New Issue