[ReactNative] Run UIExplorer tests on sandcastle

This commit is contained in:
Tadeu Zagallo
2015-05-26 16:58:16 -01:00
parent 158d8b64ff
commit e1454c29c5
4 changed files with 13 additions and 5 deletions

View File

@@ -82,8 +82,8 @@ static NSString *RCTCacheKeyForURL(NSURL *url)
RCTImageDownloader *strongSelf = weakSelf;
NSArray *blocks = strongSelf->_pendingBlocks[cacheKey];
[strongSelf->_pendingBlocks removeObjectForKey:cacheKey];
for (RCTCachedDataDownloadBlock block in blocks) {
block(cached, data, error);
for (RCTCachedDataDownloadBlock cacheDownloadBlock in blocks) {
cacheDownloadBlock(cached, data, error);
}
});
};