Procházet zdrojové kódy

Small fix, this needs to be `strongOperation`

Bogdan Poplauschi před 9 roky
rodič
revize
fdb8b2c
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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);
                 }
             });