aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/AppStore.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2017-12-24 21:44:55 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2017-12-24 21:44:55 +0100
commitb79c997b2316a60ebe7920f263c1edbc582c852e (patch)
treea4a32e8208d6c369474580d194cca2897a08df58 /src/stores/AppStore.js
parentfix(App): Fix service reload after waking machine up (diff)
downloadferdium-app-b79c997b2316a60ebe7920f263c1edbc582c852e.tar.gz
ferdium-app-b79c997b2316a60ebe7920f263c1edbc582c852e.tar.zst
ferdium-app-b79c997b2316a60ebe7920f263c1edbc582c852e.zip
Fix linting issue
Diffstat (limited to 'src/stores/AppStore.js')
-rw-r--r--src/stores/AppStore.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stores/AppStore.js b/src/stores/AppStore.js
index 7e2be5e9f..ea51b537a 100644
--- a/src/stores/AppStore.js
+++ b/src/stores/AppStore.js
@@ -367,7 +367,7 @@ export default class AppStore extends Store {
367 367
368 _reactivateServices(retryCount = 0) { 368 _reactivateServices(retryCount = 0) {
369 if (!this.isOnline) { 369 if (!this.isOnline) {
370 console.debug('reactivateServices: computer is offline, trying again in 5s, retries:', retryCount) 370 console.debug('reactivateServices: computer is offline, trying again in 5s, retries:', retryCount);
371 return setTimeout(() => this._reactivateServices(retryCount + 1), 5000); 371 return setTimeout(() => this._reactivateServices(retryCount + 1), 5000);
372 } 372 }
373 373