Add forgiveParseErrors option to DiskCache instance creation #3747
| @@ -103,7 +103,7 @@ class DiskCache { | ||
| 103 | 103 | return this.#instance; |
| 104 | 104 | } |
| 105 | 105 | |
| 106 | 106 | this.#instance = storage.create({ dir: this.cachePath, ttl: false, forgiveParseErrors: true }); |
| 107 | 107 | await this.#instance.init(); |
| 108 | 108 | this.#syncInterval = setInterval(this.#syncCacheEntries.bind(this), DiskCache.SYNC_INTERVAL); |
| 109 | 109 | return this.#instance; |