aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores
diff options
context:
space:
mode:
authorLibravatar haraldox <hnaumann+github@gmail.com>2018-02-16 12:31:30 +0100
committerLibravatar haraldox <hnaumann+github@gmail.com>2018-02-16 12:31:30 +0100
commit4e5f7af64acef41a14f6a9b4a7adc7c4696ae3f8 (patch)
treec8d29f72124821ae981c34dc3dae1d451ca20c70 /src/stores
parent[MINOR] string correction (diff)
downloadferdium-app-4e5f7af64acef41a14f6a9b4a7adc7c4696ae3f8.tar.gz
ferdium-app-4e5f7af64acef41a14f6a9b4a7adc7c4696ae3f8.tar.zst
ferdium-app-4e5f7af64acef41a14f6a9b4a7adc7c4696ae3f8.zip
reload Franz instead of all services on sleep resume
Diffstat (limited to 'src/stores')
-rw-r--r--src/stores/AppStore.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stores/AppStore.js b/src/stores/AppStore.js
index 06c43f83f..dc5a04c46 100644
--- a/src/stores/AppStore.js
+++ b/src/stores/AppStore.js
@@ -364,8 +364,8 @@ export default class AppStore extends Store {
364 console.debug('reactivateServices: computer is offline, trying again in 5s, retries:', retryCount); 364 console.debug('reactivateServices: computer is offline, trying again in 5s, retries:', retryCount);
365 setTimeout(() => this._reactivateServices(retryCount + 1), 5000); 365 setTimeout(() => this._reactivateServices(retryCount + 1), 5000);
366 } else { 366 } else {
367 console.debug('reactivateServices: reload all services'); 367 console.debug('reactivateServices: reload Franz');
368 this.actions.service.reloadAll(); 368 window.location.reload();
369 } 369 }
370 } 370 }
371 371