This commit is contained in:
Abhinav 2024-01-11 09:51:16 +05:30
parent 218b6214ce
commit b4cd1d0dae

View file

@ -58,6 +58,7 @@ class DiskLRUService {
} catch (e) {
if (e.code === 'ENOENT') return;
logError(e, 'Failed to evict least recently used');
// ignoring the error, as it would retried on the next run
}
this.evictLeastRecentlyUsed(cacheDir, maxSize);
}