aboutsummaryrefslogtreecommitdiffstats
path: root/src/electron
diff options
context:
space:
mode:
Diffstat (limited to 'src/electron')
-rw-r--r--src/electron/Settings.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/electron/Settings.js b/src/electron/Settings.js
index 4dd9f8245..3e11bb175 100644
--- a/src/electron/Settings.js
+++ b/src/electron/Settings.js
@@ -45,14 +45,14 @@ export default class Settings {
45 45
46 _hydrate() { 46 _hydrate() {
47 this.store = this._merge(readJsonSync(this.settingsFile)); 47 this.store = this._merge(readJsonSync(this.settingsFile));
48 debug('Hydrate store', this.type, toJS(this.store)); 48 debug('Hydrate store', this.type, this.allSerialized);
49 } 49 }
50 50
51 _writeFile() { 51 _writeFile() {
52 outputJsonSync(this.settingsFile, this.store, { 52 outputJsonSync(this.settingsFile, this.store, {
53 spaces: 2, 53 spaces: 2,
54 }); 54 });
55 debug('Write settings file', this.type, toJS(this.store)); 55 debug('Write settings file', this.type, this.allSerialized);
56 } 56 }
57 57
58 get settingsFile() { 58 get settingsFile() {