Browse Source

Disable disk caching in stateService (#1406)

* Disable disk caching in stateService

* Turn back on caching for the renderer

Co-authored-by: addison <addisonbeck1@gmail.com>
pull/1410/head
Thomas Rittson 4 years ago committed by GitHub
parent
commit
c0170563f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      src/main.ts

3
src/main.ts

@ -83,7 +83,8 @@ export class Main {
null, null,
this.logService, this.logService,
null, null,
new StateFactory(GlobalState, Account) new StateFactory(GlobalState, Account),
false // Do not use disk caching because this will get out of sync with the renderer service
); );
this.windowMain = new WindowMain( this.windowMain = new WindowMain(

Loading…
Cancel
Save