mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 961665 - Fix typo in CrashManager's use of OS.File. r=gps
This commit is contained in:
parent
bf21fa8295
commit
f0f0fc98d1
@ -595,7 +595,7 @@ CrashStore.prototype = Object.freeze({
|
||||
|
||||
try {
|
||||
let decoder = new TextDecoder();
|
||||
let data = yield OS.File.read(this._storePath, null, {compression: "lz4"});
|
||||
let data = yield OS.File.read(this._storePath, {compression: "lz4"});
|
||||
data = JSON.parse(decoder.decode(data));
|
||||
|
||||
if (data.corruptDate) {
|
||||
|
Loading…
Reference in New Issue
Block a user