Skip to content

Commit 4e5fc96

Browse files
committed
Attempt to fix #63
1 parent 0071ed4 commit 4e5fc96

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

FastImageCache/FICImageCache.m

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,9 @@ - (void)cancelImageRetrievalForEntity:(id <FICEntity>)entity withFormatName:(NSS
426426

427427
- (void)reset {
428428
for (FICImageTable *imageTable in [_imageTables allValues]) {
429-
[imageTable reset];
429+
dispatch_async([[self class] dispatchQueue], ^{
430+
[imageTable reset];
431+
});
430432
}
431433
}
432434

0 commit comments

Comments
 (0)