We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8428b4e commit a31566dCopy full SHA for a31566d
1 file changed
src/stores/AppStore.js
@@ -23,6 +23,7 @@ import { getLocale } from '../helpers/i18n-helpers';
23
24
import { getServiceIdsFromPartitions, removeServicePartitionDirectory } from '../helpers/service-helpers.js';
25
import { isValidExternalURL } from '../helpers/url-helpers';
26
+import { sleep } from '../helpers/async-helpers';
27
28
const debug = require('debug')('Franz:AppStore');
29
@@ -327,6 +328,8 @@ export default class AppStore extends Store {
327
328
329
await clearAppCache._promise;
330
331
+ await sleep(ms('1s'));
332
+
333
this.getAppCacheSizeRequest.execute();
334
335
this.isClearingAllCache = false;
0 commit comments