We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50426db commit fea847bCopy full SHA for fea847b
Source/Details/ASPINRemoteImageDownloader.mm
@@ -99,8 +99,8 @@ @implementation ASPINRemoteImageManager
99
if ([diskCache respondsToSelector:@selector(setByteLimit:)]) {
100
// Set a default byteLimit. PINCache recently implemented a 50MB default (PR #201).
101
// Ensure that older versions of PINCache also have a byteLimit applied.
102
- // NOTE: Using 20MB limit while large cache initialization is being optimized (Issue #144).
103
- ((id <ASPINDiskCache>)diskCache).byteLimit = 20 * 1024 * 1024;
+ // NOTE: Matching PINCache defualt 50MB limit.
+ ((id <ASPINDiskCache>)diskCache).byteLimit = 50 * 1024 * 1024;
104
}
105
106
});
0 commit comments