diff --git a/js/stores/appStore.js b/js/stores/appStore.js index 55313780011..6a45e84c168 100644 --- a/js/stores/appStore.js +++ b/js/stores/appStore.js @@ -78,7 +78,7 @@ class AppStore extends EventEmitter { } emitChanges () { - if (this.lastEmittedState) { + if (this.lastEmittedState && this.lastEmittedState !== appState) { const d = diff(this.lastEmittedState, appState) if (!d.isEmpty()) { BrowserWindow.getAllWindows().forEach((wnd) => {