From 2df012fb97f3ef4b6d856b8d014949155272bcbd Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Mon, 2 Aug 2021 16:06:17 +0300 Subject: [PATCH] fix cache api catch error --- client/src/app.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/client/src/app.js b/client/src/app.js index 14ef9095c2..29be706573 100644 --- a/client/src/app.js +++ b/client/src/app.js @@ -197,6 +197,10 @@ define( .then(responseCache => { this.responseCache = responseCache; + resolve(); + }) + .catch(() => { + console.error("Could not open `espo` cache."); resolve(); }); });