aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Danny Qiu <dqiu55@gmail.com>2017-12-29 23:52:35 -0500
committerLibravatar Danny Qiu <dqiu55@gmail.com>2017-12-29 23:52:35 -0500
commit3c21a974ab36007410d2a6006d9eda01b9413c7c (patch)
tree5188901b74e56e57e77ae446eec9612b7f72410b /src
parentAdd button to clear global cache and all services (diff)
downloadferdium-app-3c21a974ab36007410d2a6006d9eda01b9413c7c.tar.gz
ferdium-app-3c21a974ab36007410d2a6006d9eda01b9413c7c.tar.zst
ferdium-app-3c21a974ab36007410d2a6006d9eda01b9413c7c.zip
Fix lint issues
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 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 }