aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar haraldox <hnaumann+github@gmail.com>2018-02-16 13:08:50 +0100
committerLibravatar haraldox <hnaumann+github@gmail.com>2018-02-16 13:08:50 +0100
commit452526d42259a58790dcdbdb33a22953075d82ad (patch)
treeab074fea25a0575f0e6208ee02483d0a9570226c
parentinverted welcome button "Create a free account" (diff)
parentreload Franz instead of all services on sleep resume (diff)
downloadferdium-app-452526d42259a58790dcdbdb33a22953075d82ad.tar.gz
ferdium-app-452526d42259a58790dcdbdb33a22953075d82ad.tar.zst
ferdium-app-452526d42259a58790dcdbdb33a22953075d82ad.zip
Merge branch 'fix/sleep' into develop
-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