We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0071ed4 commit 4e5fc96Copy full SHA for 4e5fc96
1 file changed
FastImageCache/FICImageCache.m
@@ -426,7 +426,9 @@ - (void)cancelImageRetrievalForEntity:(id <FICEntity>)entity withFormatName:(NSS
426
427
- (void)reset {
428
for (FICImageTable *imageTable in [_imageTables allValues]) {
429
- [imageTable reset];
+ dispatch_async([[self class] dispatchQueue], ^{
430
+ [imageTable reset];
431
+ });
432
}
433
434
0 commit comments