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