We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c252014 commit 7124ab4Copy full SHA for 7124ab4
electron/main/cache/disk-cache.service.ts
@@ -66,7 +66,7 @@ export class DiskCacheServiceImpl extends AbstractCacheService {
66
try {
67
logger.trace('writing cache to disk', { filepath });
68
const cache = await this.delegate.readCache();
69
- await fs.writeJson(filepath, cache);
+ await fs.writeJson(filepath, cache, { spaces: 2 });
70
logger.trace('wrote cache to disk', { filepath });
71
} catch (error) {
72
logger.error('error writing cache to disk', {
0 commit comments