fix cache api catch error

This commit is contained in:
Yuri Kuznetsov
2021-08-02 16:06:17 +03:00
parent 83d5f74e19
commit 2df012fb97
+4
View File
@@ -197,6 +197,10 @@ define(
.then(responseCache => {
this.responseCache = responseCache;
resolve();
})
.catch(() => {
console.error("Could not open `espo` cache.");
resolve();
});
});