Commit 89797990 authored by Dylan Roeh's avatar Dylan Roeh
Browse files

Bug 1412301 - Decrease save delay to ensure PWA manifests are actually written...

Bug 1412301 - Decrease save delay to ensure PWA manifests are actually written to disk before a user tries to run one. r=snorp
parent 1fbcc23e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -75,7 +75,7 @@ class Manifest {
  }

  async initialise() {
    this._store = new JSONFile({path: this._path});
    this._store = new JSONFile({path: this._path, saveDelayMs: 100});
    await this._store.load();
  }