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.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/stores/AppStore.js b/src/stores/AppStore.js
index 315235ba4..0398b7533 100644
--- a/src/stores/AppStore.js
+++ b/src/stores/AppStore.js
@@ -23,6 +23,7 @@ import { getLocale } from '../helpers/i18n-helpers';
23 23
24import { getServiceIdsFromPartitions, removeServicePartitionDirectory } from '../helpers/service-helpers.js'; 24import { getServiceIdsFromPartitions, removeServicePartitionDirectory } from '../helpers/service-helpers.js';
25import { isValidExternalURL } from '../helpers/url-helpers'; 25import { isValidExternalURL } from '../helpers/url-helpers';
26import { sleep } from '../helpers/async-helpers';
26 27
27const debug = require('debug')('Franz:AppStore'); 28const debug = require('debug')('Franz:AppStore');
28 29
@@ -327,6 +328,8 @@ export default class AppStore extends Store {
327 328
328 await clearAppCache._promise; 329 await clearAppCache._promise;
329 330
331 await sleep(ms('1s'));
332
330 this.getAppCacheSizeRequest.execute(); 333 this.getAppCacheSizeRequest.execute();
331 334
332 this.isClearingAllCache = false; 335 this.isClearingAllCache = false;