diff --git a/Source/Details/ASPINRemoteImageDownloader.mm b/Source/Details/ASPINRemoteImageDownloader.mm index 8576cc7d3..1bfbdcd95 100644 --- a/Source/Details/ASPINRemoteImageDownloader.mm +++ b/Source/Details/ASPINRemoteImageDownloader.mm @@ -99,8 +99,8 @@ @implementation ASPINRemoteImageManager if ([diskCache respondsToSelector:@selector(setByteLimit:)]) { // Set a default byteLimit. PINCache recently implemented a 50MB default (PR #201). // Ensure that older versions of PINCache also have a byteLimit applied. - // NOTE: Using 20MB limit while large cache initialization is being optimized (Issue #144). - ((id )diskCache).byteLimit = 20 * 1024 * 1024; + // NOTE: Matching PINCache defualt 50MB limit. + ((id )diskCache).byteLimit = 50 * 1024 * 1024; } } });