aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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