aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores')
-rw-r--r--src/stores/AppStore.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/stores/AppStore.js b/src/stores/AppStore.js
index c38e84639..ca5cad836 100644
--- a/src/stores/AppStore.js
+++ b/src/stores/AppStore.js
@@ -207,7 +207,10 @@ export default class AppStore extends Store {
207 if (this.timeSuspensionStart.add(10, 'm').isBefore(moment())) { 207 if (this.timeSuspensionStart.add(10, 'm').isBefore(moment())) {
208 debug('Reloading services, user info and features'); 208 debug('Reloading services, user info and features');
209 209
210 window.location.reload(); 210 this.actions.service.reloadAll();
211
212 this.stores.user.getUserInfoRequest.invalidate({ immediately: true });
213 this.stores.features.featuresRequest.invalidate({ immediately: true });
211 214
212 statsEvent('resumed-app'); 215 statsEvent('resumed-app');
213 } 216 }