소스 검색

Small fix, this needs to be `strongOperation`

Bogdan Poplauschi 9 년 전
부모
커밋
fdb8b2c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      SDWebImage/SDWebImageManager.m

+ 1 - 1
SDWebImage/SDWebImageManager.m

@@ -273,7 +273,7 @@
             // Image not in cache and download disallowed by delegate
             dispatch_main_async_safe(^{
                 __strong __typeof(weakOperation) strongOperation = weakOperation;
-                if (strongOperation && !weakOperation.isCancelled) {
+                if (strongOperation && !strongOperation.isCancelled) {
                     completedBlock(nil, nil, nil, SDImageCacheTypeNone, YES, url);
                 }
             });