aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/AppStore.js
diff options
context:
space:
mode:
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 1136629ba..ac8d15632 100644
--- a/src/stores/AppStore.js
+++ b/src/stores/AppStore.js
@@ -257,7 +257,7 @@ export default class AppStore extends Store {
257 this.isClearingAllCache = true; 257 this.isClearingAllCache = true;
258 const clearAppCache = this.clearAppCacheRequest.execute(); 258 const clearAppCache = this.clearAppCacheRequest.execute();
259 const serviceIds = await getServiceIdsFromPartitions(); 259 const serviceIds = await getServiceIdsFromPartitions();
260 await Promise.all(serviceIds.map(id => this.actions.service.clearCache({ serviceId: id, }))); 260 await Promise.all(serviceIds.map(id => this.actions.service.clearCache({ serviceId: id })));
261 await clearAppCache._promise; 261 await clearAppCache._promise;
262 this.isClearingAllCache = false; 262 this.isClearingAllCache = false;
263 } 263 }