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

This commit is contained in:
Bogdan Poplauschi 2014-07-23 08:13:25 +03:00
parent f96302b427
commit e95224bf5f
1 changed files with 5 additions and 1 deletions

View File

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