Authored by Bogdan Poplauschi

Temporary fix for #809, until we can figure out the cause of the crash

@@ -317,7 +317,11 @@ @@ -317,7 +317,11 @@
317 } 317 }
318 if (self.cancelBlock) { 318 if (self.cancelBlock) {
319 self.cancelBlock(); 319 self.cancelBlock();
320 - self.cancelBlock = nil; 320 +
  321 + // TODO: this is a temporary fix to #809.
  322 + // Until we can figure the exact cause of the crash, going with the ivar instead of the setter
  323 +// self.cancelBlock = nil;
  324 + _cancelBlock = nil;
321 } 325 }
322 } 326 }
323 327