Skip to content

Commit

Permalink
reload Franz instead of all services on sleep resume
Browse files Browse the repository at this point in the history
  • Loading branch information
haraldox committed Feb 16, 2018
1 parent 683d834 commit 4e5f7af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/stores/AppStore.js
Expand Up @@ -364,8 +364,8 @@ export default class AppStore extends Store {
console.debug('reactivateServices: computer is offline, trying again in 5s, retries:', retryCount); console.debug('reactivateServices: computer is offline, trying again in 5s, retries:', retryCount);
setTimeout(() => this._reactivateServices(retryCount + 1), 5000); setTimeout(() => this._reactivateServices(retryCount + 1), 5000);
} else { } else {
console.debug('reactivateServices: reload all services'); console.debug('reactivateServices: reload Franz');
this.actions.service.reloadAll(); window.location.reload();
} }
} }


Expand Down

0 comments on commit 4e5f7af

Please sign in to comment.