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:
initlife 2015-09-30 10:59:02 +08:00
commit 20c77af44c
1 changed files with 1 additions and 1 deletions

View File

@ -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);